Skip to content

Commit

Permalink
Update golang and alpine versions in Dockerfiles (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygabby authored Apr 3, 2023
1 parent b158d72 commit 9f7a138
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/ct-malformed/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-alpine as builder
FROM golang:1.20.2-alpine as builder

RUN apk --update upgrade \
&& apk --no-cache --no-progress add git bash curl \
Expand All @@ -12,7 +12,7 @@ COPY . .
RUN go install -v ./cmd/ct-malformed/...

## main
FROM alpine:3.8
FROM alpine:3.17.3

RUN apk update && apk add --no-cache --virtual ca-certificates

Expand Down
4 changes: 2 additions & 2 deletions docker/ct-test-srv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-alpine as builder
FROM golang:1.20.2-alpine as builder

RUN apk --update upgrade \
&& apk --no-cache --no-progress add git bash curl \
Expand All @@ -12,7 +12,7 @@ COPY . .
RUN go install -v ./test/cttestsrv/cmd/ct-test-srv/...

## main
FROM alpine:3.8
FROM alpine:3.17.3

RUN apk update && apk add --no-cache --virtual ca-certificates

Expand Down
4 changes: 2 additions & 2 deletions docker/ct-woodpecker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-alpine as builder
FROM golang:1.20.2-alpine as builder

RUN apk --update upgrade \
&& apk --no-cache --no-progress add git bash curl build-base \
Expand All @@ -12,7 +12,7 @@ COPY . .
RUN go install -v ./cmd/ct-woodpecker/...

## main
FROM alpine:3.8
FROM alpine:3.17.3

RUN apk update && apk add ca-certificates bash

Expand Down

0 comments on commit 9f7a138

Please sign in to comment.