Skip to content
Closed
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 alpine:3.14.2 AS builder
FROM alpine:3.17.0 AS builder
RUN apk add --no-cache --update git \
alpine-sdk \
cmake \
Expand All @@ -13,7 +13,7 @@ FROM koalaman/shellcheck:v0.7.1 AS test
COPY . /app
RUN ["shellcheck", "/app/screenshot"]

FROM alpine:3.14.2 as prod
FROM alpine:3.17.0 as prod
LABEL org.opencontainers.image.source=https://github.com/lainiwa/screenshot
ENV SCREENSHOT_DIR /opt/shared
COPY --from=builder /root/ect/build/ect /usr/local/bin
Expand Down