Skip to content

Commit

Permalink
Merge pull request #886 from bitholla/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
abeikverdi authored Jul 21, 2021
2 parents eececba + 3558667 commit 1bc6acc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions web/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# build environment
FROM node:12.18.3-alpine as build
FROM node:12.18.3-buster as build
ENV NODE_OPTIONS=--max_old_space_size=3072
WORKDIR /app
COPY package.json /app/package.json
RUN npm install --loglevel=error
RUN npm config set unsafe-perm true && \
npm install -g node-gyp && \
npm install --loglevel=error
COPY . /app
RUN npm run build

Expand Down

0 comments on commit 1bc6acc

Please sign in to comment.