Skip to content

Commit

Permalink
fix node in docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelEinbinder committed Mar 11, 2024
1 parent 8a46c0f commit df5a62f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion utils/bundle.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-buster
FROM node:20-buster
COPY ./slug-out/ /tmp/slug-out
RUN cd /tmp/slug-out/ && npm i --no-package-lock --omit=dev
RUN cd /tmp/ && tar czf slug.tar.gz -C ./slug-out .
Expand Down
2 changes: 1 addition & 1 deletion utils/package.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM node:20
COPY ./electron-out/ /tmp/electron-out
RUN cd /tmp/electron-out/ && npm i --no-package-lock --omit=dev && npx -y electron-packager . --appname=snail --platform=linux --out=built-electron --electron-version=v22.2.0
RUN cd /tmp/electron-out/ && tar czf built-electron.tar.gz -C ./built-electron .
Expand Down

0 comments on commit df5a62f

Please sign in to comment.