Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update golang and alpine versions in Dockerfiles #129

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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