Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine as builder
FROM golang:1.21-alpine as builder

COPY . /build
WORKDIR /build
Expand All @@ -21,7 +21,7 @@ RUN chmod +x /opt/resource/*

ADD .git/ref /opt/resource/builtWithRef

FROM golang:1.20-alpine AS resource
FROM golang:1.21-alpine AS resource
RUN apk add --no-cache bash tzdata ca-certificates jq libc6-compat
ENV TERM xterm-256color
COPY --from=builder /opt/resource/* /opt/resource/
Expand Down