Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.14@sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae
FROM alpine:3.18

RUN apk add --no-cache \
nodejs
Expand All @@ -10,7 +10,8 @@ COPY package.json ./
RUN apk add --no-cache \
npm \
&& npm i --no-optional \
&& npm cache clean --force
&& npm cache clean --force \
&& apk del npm

COPY .env.example /app/.env.example
COPY . /app
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"lint": "eslint \"**/*.js\""
},
"dependencies": {
"express": "4.17.1",
"express": "4.17.3",
"express-handlebars": "5.3.1",
"cross-env": "7.0.3",
"reveal.js": "4.3.0"
Expand Down