Skip to content

Commit

Permalink
fix(shrinkwrap): remove shrinkwrap file (#342)
Browse files Browse the repository at this point in the history
* fix(shrinkwrap): remove shrinkwrap file

The shrinkwrap file is no longer needed... ?

* remove shrinkreference in dockerfile
  • Loading branch information
nicojs authored Jul 8, 2024
1 parent 3aa2a48 commit e29b1c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1,416 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
!plugins
!decktape.js
!package.json
!npm-shrinkwrap.json
!package-lock.json
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
!decktape.js
!Dockerfile
!package.json
!npm-shrinkwrap.json
!package-lock.json
!README.adoc
!test/
test/output/
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
!plugins
!decktape.js
!package.json
!npm-shrinkwrap.json
!README.adoc
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Loading

0 comments on commit e29b1c1

Please sign in to comment.