Created
August 27, 2018 14:12
-
-
Save faiyaz26/fc57e13a23f5780005e389175dcdd08e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8 | |
WORKDIR /usr/src/app | |
COPY /public /usr/src/app/public | |
COPY package.json . | |
COPY config.js . | |
COPY server.js . | |
RUN npm install | |
ENV ENV_NAME prod | |
ENV REDIS_URL redis | |
EXPOSE 3000 | |
ENTRYPOINT ["node", "server.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment