Created
January 22, 2022 08:10
-
-
Save quocthinhle/2e37051e97002c38921219dafd93488a to your computer and use it in GitHub Desktop.
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:alpine | |
RUN mkdir -p /usr/src/app | |
COPY . ./usr/src/app | |
WORKDIR /usr/src/app | |
RUN npm install | |
EXPOSE 3000 | |
CMD ["npm", "run", "hehe"] | |
// npm run hehe: rm -rf dist && tsc && node dist/bin/www |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment