Last active
December 9, 2022 05:05
-
-
Save svnlto/ab90628da660f6d6c46f7c847f618a7a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 comaeio/lemur | |
MAINTAINER Sven Lito [email protected] | |
ENV NODE_ENV=development | |
WORKDIR /tmp | |
COPY package.json package.json | |
RUN npm install && npm cache clean | |
RUN cp -a /tmp/node_modules /usr/src/app/ | |
RUN rm -rf /tmp/* | |
WORKDIR /usr/src/app/ | |
EXPOSE 3000 | |
EXPOSE 4000 | |
COPY . . | |
CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment