Upgrade Alpine to v3.19.1 and Node to v20.11

This commit is contained in:
Antonin Stefanutti 2024-03-02 16:19:10 +01:00 committed by Antonin Stefanutti
parent 54aa7b8a0a
commit 636d252773

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.3.0-labs
FROM node:17.2.0-alpine as builder
FROM node:20.11-alpine3.19 as builder
ENV NODE_ENV production
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
@ -14,7 +14,7 @@ COPY decktape.js ./
RUN npm install
FROM alpine:3.15.0
FROM alpine:3.19.1
LABEL org.opencontainers.image.source="https://github.com/astefanutti/decktape"