Skip to content

Instantly share code, notes, and snippets.

@christopherbauer
Created July 1, 2023 06:00
Show Gist options
  • Save christopherbauer/6fb5bd0223ced20cc9016c1a4c18537f to your computer and use it in GitHub Desktop.
Save christopherbauer/6fb5bd0223ced20cc9016c1a4c18537f to your computer and use it in GitHub Desktop.
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