diff options
Diffstat (limited to 'telebot/Dockerfile')
-rw-r--r-- | telebot/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/telebot/Dockerfile b/telebot/Dockerfile index cdf2a83..5b573f1 100644 --- a/telebot/Dockerfile +++ b/telebot/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.18 as builder +FROM golang:1.22-alpine3.19 as builder RUN apk update && apk upgrade RUN apk add go git COPY go.* /telebot/ @@ -6,13 +6,13 @@ RUN cd /telebot && go mod download COPY *.go /telebot/ RUN cd /telebot && go build -FROM alpine:3.18 as certbuilder +FROM alpine:3.19 as certbuilder RUN apk add openssl WORKDIR /certs RUN openssl req -nodes -new -x509 -subj="/C=US/ST=Denial/L=springfield/O=Dis/CN=localhost" -keyout server.key -out server.cert # FROM gcr.io/distroless/static-debian10 -FROM alpine:3.18 +FROM alpine:3.19 COPY --from=certbuilder /certs /certs COPY --from=builder /telebot/telebot /telebot/ COPY ./docker-entrypoint.sh /telebot/ |