Created
April 26, 2020 22:24
-
-
Save Rolilink/594222367817fa089d4c379d2c815fbb to your computer and use it in GitHub Desktop.
CRAPP
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:erbium | |
WORKDIR /www | |
ENV RUNTIME dev | |
EXPOSE 3000 | |
# Install app dependencies | |
COPY package.json ./ | |
COPY yarn.lock ./ | |
RUN yarn | |
# Bundle app source | |
COPY . . | |
CMD yarn start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment