Skip to content
Snippets Groups Projects
Commit 73efe344 authored by Felipe Cecagno's avatar Felipe Cecagno
Browse files

update Dockerfile

parent d3639bb6
No related branches found
No related tags found
No related merge requests found
FROM node:8-slim
ADD . app
WORKDIR app
ENV NODE_ENV production
RUN cp config_local.js.example config_local.js
WORKDIR /app
ENV NODE_ENV production
ADD package.json package-lock.json /app/
RUN npm install \
&& npm cache clear --force
ADD . /app
RUN cp config/default.example.yml config/default.yml
EXPOSE 3005
CMD ["node", "app.js"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment