Merge pull request #2034 from gravitl/dependabot/docker/develop/alpine-3.17.2

Bump alpine from 3.16.2 to 3.17.2
This commit is contained in:
Alex Feiszli 2023-05-02 17:13:29 -04:00 committed by GitHub
commit 30295cf7d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ COPY . .
RUN GOOS=linux CGO_ENABLED=1 go build -ldflags="-s -w " -tags ${tags} . RUN GOOS=linux CGO_ENABLED=1 go build -ldflags="-s -w " -tags ${tags} .
# RUN go build -tags=ee . -o netmaker main.go # RUN go build -tags=ee . -o netmaker main.go
FROM alpine:3.16.2 FROM alpine:3.17.2
# add a c lib # add a c lib
# set the working directory # set the working directory

View file

@ -1,5 +1,5 @@
#first stage - builder #first stage - builder
FROM alpine:3.15.2 FROM alpine:3.17.2
ARG version ARG version
WORKDIR /app WORKDIR /app
COPY ./netmaker /root/netmaker COPY ./netmaker /root/netmaker

View file

@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.16 FROM golang:1.19.6-alpine3.17
ARG version ARG version
RUN apk add build-base RUN apk add build-base
WORKDIR /app WORKDIR /app