Created
March 26, 2019 10:58
-
-
Save mhemrg/46826bbca3ae11f14f41b5e767593ea6 to your computer and use it in GitHub Desktop.
Liara - Node 10
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 node:10 | |
WORKDIR /app | |
COPY . . | |
RUN npm install && npm run --if-present build | |
CMD npm start | |
EXPOSE 3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment