diff --git a/Dockerfile b/Dockerfile index fea9f73..a7d0512 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /md2htmlapi RUN apk update && apk upgrade --available && sync && apk add --no-cache --virtual .build-deps COPY . . RUN go build -ldflags="-w -s" . -FROM alpine:3.19.0 +FROM alpine:3.19.1 RUN apk update && apk upgrade --available && sync COPY --from=builder /md2htmlapi/md2htmlapi /md2htmlapi ENTRYPOINT ["/md2htmlapi"]