Compare commits

...

2 Commits

Author SHA1 Message Date
Nico Jansen
a46d7bdcfb
Merge f53d29fed3 into 3aa2a481d3 2024-07-08 06:56:32 +00:00
Nico Jansen
f53d29fed3 remove shrinkreference in dockerfile 2024-07-08 08:56:26 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -3,4 +3,4 @@
!plugins
!decktape.js
!package.json
!npm-shrinkwrap.json
!package-lock.json

View File

@ -1,18 +1,18 @@
# syntax=docker/dockerfile:1.3.0-labs
FROM node:20.11-alpine3.19 as builder
FROM node:20.15-alpine3.19 as builder
ENV NODE_ENV production
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
WORKDIR /decktape
COPY package.json npm-shrinkwrap.json ./
COPY package.json package-lock.json ./
COPY libs libs/
COPY plugins plugins/
COPY decktape.js ./
RUN npm install
RUN npm ci --omit=dev
FROM alpine:3.19.1