2018-01-16 07:27:36 -05:00
|
|
|
FROM node:8.9.1
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY package.json /app/
|
|
|
|
|
|
|
|
RUN npm install --quiet
|
|
|
|
|
2018-03-23 12:14:30 -04:00
|
|
|
|
|
|
|
COPY . /app
|
2018-01-16 07:27:36 -05:00
|
|
|
RUN npm run compile:all
|
|
|
|
|
|
|
|
FROM node:8.9.1
|
|
|
|
|
|
|
|
COPY --from=0 /app /app
|
2018-03-23 12:23:04 -04:00
|
|
|
RUN chown app:app /app/uploads
|
2018-01-16 07:27:36 -05:00
|
|
|
# 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
|
|
|
|
USER app
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
EXPOSE 3009
|
|
|
|
|
|
|
|
CMD ["node","app.js"]
|