Skip to content

Instantly share code, notes, and snippets.

@gaboluque
Created October 11, 2021 22:56
Show Gist options
  • Save gaboluque/f75f347308b9529cfb56006d8bfec5db to your computer and use it in GitHub Desktop.
Save gaboluque/f75f347308b9529cfb56006d8bfec5db to your computer and use it in GitHub Desktop.
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