Skip to content

Instantly share code, notes, and snippets.

@muhammed-mukthar
Created October 26, 2022 05:30
Show Gist options
  • Save muhammed-mukthar/f68dc9af35660996eaf899b9e0c990d4 to your computer and use it in GitHub Desktop.
Save muhammed-mukthar/f68dc9af35660996eaf899b9e0c990d4 to your computer and use it in GitHub Desktop.
FROM node:17-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm","start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment