Skip to content

Commit

Permalink
Merge pull request #9 from BillMills/main
Browse files Browse the repository at this point in the history
hack around awkward npm logging
  • Loading branch information
bkatiemills authored Jun 30, 2022
2 parents 412d6e5 + 77cf238 commit 60da377
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
FROM node:17.9.0
FROM node:17.9.1
RUN apt-get update -y
#RUN apt-get install -y zlib1g/stable-security subversion/stable-security openssl/stable-security ldap-utils/stable-security
RUN npm update -g && npm install -g npm@8.13.2

WORKDIR /app
# hack to avoid https://github.com/npm/cli/issues/4838
ENV HOME=/app
COPY package.json ./
RUN npm install
COPY . /app
RUN chown -R 1000660000 /app

CMD [ "npm", "start"]

0 comments on commit 60da377

Please sign in to comment.