Skip to content

Commit

Permalink
Merge pull request #29 from thotheod/master
Browse files Browse the repository at this point in the history
fix dockerfile / upgrade packages
  • Loading branch information
sabbour authored Feb 1, 2023
2 parents f3ecf1f + 524686f commit 85cca43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:13.5-alpine
FROM node:14-alpine

WORKDIR /usr/src/app

# Install build dependencies via apk
RUN apk update && apk add python g++ make && rm -rf /var/cache/apk/*
RUN apk update && apk add python3 g++ make && rm -rf /var/cache/apk/*

# Install node dependencies - done in a separate step so Docker can cache it
COPY package*.json ./
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"node-sass": "^4.12.0",
"node-sass": "^4.14.0",
"numeral": "^2.0.6",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
Expand Down

0 comments on commit 85cca43

Please sign in to comment.