Skip to content

Commit

Permalink
Specify versions of base images in Dockerfile
Browse files Browse the repository at this point in the history
This is required for Dependabot to accurately check the current version

Signed-off-by: James Alseth <[email protected]>
  • Loading branch information
jalseth committed Jun 24, 2021
1 parent a242a61 commit 5935455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-alpine as base
FROM golang:1.16.5-alpine as base
ARG ARCH=amd64
ARG VERSION
ARG COMMIT
Expand Down Expand Up @@ -53,7 +53,7 @@ RUN go get -u cuelang.org/go/cmd/cue
WORKDIR /examples

## RELEASE ##
FROM alpine:latest
FROM alpine:3.14.0

# Install git for protocols that depend on it when using conftest pull
RUN apk add --no-cache git
Expand Down

0 comments on commit 5935455

Please sign in to comment.