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 Go and Alpine version in container images #82

Merged
merged 1 commit into from
Aug 18, 2022
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
2 changes: 1 addition & 1 deletion docker/nats-boot-config/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN VERSION=$VERSION make nats-boot-config.docker
FROM alpine:latest as osdeps
RUN apk add --no-cache ca-certificates

FROM alpine:3.15
FROM alpine:3.16
COPY --from=build /go/src/nack/nats-boot-config.docker /usr/local/bin/nats-boot-config
COPY --from=osdeps /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
RUN ln -s /usr/local/bin/nats-boot-config /usr/local/bin/nats-pod-bootconfig
Expand Down
4 changes: 2 additions & 2 deletions docker/nats-server-config-reloader/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17 AS build
FROM golang:1.19 AS build
COPY . /go/src/nack
WORKDIR /go/src/nack
ARG VERSION
Expand All @@ -7,7 +7,7 @@ RUN VERSION=$VERSION make nats-server-config-reloader.docker
FROM alpine:latest as osdeps
RUN apk add --no-cache ca-certificates

FROM alpine:3.15
FROM alpine:3.16
COPY --from=build /go/src/nack/nats-server-config-reloader.docker /usr/local/bin/nats-server-config-reloader
COPY --from=osdeps /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/

Expand Down