Skip to content

Commit

Permalink
update to alpine 3.16.2 and golang 1.18.5 (#142)
Browse files Browse the repository at this point in the history
* update to alpine 3.16.2

* update to golang 1.18.5
  • Loading branch information
sakai135 authored Aug 12, 2022
1 parent 94a85aa commit c99296f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions distro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.4-alpine3.16 as build
FROM golang:1.18.5-alpine3.16 as build
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand All @@ -8,7 +8,7 @@ RUN GOOS=windows go build -ldflags '-H=windowsgui' -o bin/wsl-gvproxy.exe ./cmd/
GOOS=linux CGO_ENABLED=0 go build -ldflags '-s -w' -o bin/wsl-vm ./cmd/vm && \
find ./bin -type f -exec sha256sum {} \;

FROM golang:1.18.4-alpine3.16 as licenses
FROM golang:1.18.5-alpine3.16 as licenses
RUN apk add --no-cache git && \
apk list --installed && \
go install github.com/google/[email protected]
Expand All @@ -19,7 +19,7 @@ COPY pkg ./pkg
RUN go-licenses save ./cmd/gvproxy --save_path ./licenses/gvproxy && \
go-licenses save ./cmd/vm --save_path ./licenses/vm

FROM alpine:3.16.1
FROM alpine:3.16.2
RUN apk add --no-cache openrc iptables && \
apk list --installed
ARG REF=https://example.com/
Expand Down

0 comments on commit c99296f

Please sign in to comment.