Use new build system

This commit is contained in:
Henry Oswald 2018-03-23 16:36:41 +00:00
parent 837a8ff35f
commit 092a151d51
2 changed files with 15 additions and 14 deletions

View file

@ -1,27 +1,24 @@
FROM node:8.9.1 FROM node:8.9.1 as app
COPY ./ /app
WORKDIR /app WORKDIR /app
COPY package.json /app/ RUN npm install
RUN npm install --quiet
COPY . /app
RUN npm run compile:all RUN npm run compile:all
FROM node:8.9.1 FROM node:8.9.1
COPY --from=0 /app /app COPY --from=app /app /app
# All app and node_modules will be owned by root.
# The app will run as the 'app' user, and so not have write permissions
# on any files it doesn't need.
RUN useradd --user-group --create-home --home-dir /app --shell /bin/false app
RUN chown app:app /app/uploads
USER app
WORKDIR /app WORKDIR /app
EXPOSE 3009 # All app and node_modules will be owned by root.
# The app will run as the 'node' user, and so not have write permissions
# on any files it doesn't need.
RUN ./install_deps.sh
USER node
CMD ["node","app.js"] CMD ["node","app.js"]

View file

@ -0,0 +1,4 @@
#!/bin/sh
apt-get install poppler-utils vim ghostscript imagemagick optipng --yes
npm rebuild
chown -R node:node /app/uploads