Created
October 11, 2021 22:56
-
-
Save gaboluque/f75f347308b9529cfb56006d8bfec5db 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 node:14.17 | |
WORKDIR /usr | |
COPY package.json ./ | |
COPY tsconfig.json ./ | |
COPY src ./src | |
RUN ls -a | |
RUN yarn install | |
EXPOSE 8000 | |
CMD ["yarn","start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment