Created
July 1, 2023 06:00
-
-
Save christopherbauer/6fb5bd0223ced20cc9016c1a4c18537f 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:19.4.0-alpine | |
WORKDIR /app | |
COPY package*.json ./ | |
RUN npm install | |
COPY . . | |
EXPOSE 3000 | |
CMD [ "npm", "run", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment