Skip to content

Instantly share code, notes, and snippets.

@christopherbauer
Created April 25, 2024 21:10
Show Gist options
  • Save christopherbauer/ccc50b4397e9118c95fd2de026dbabc6 to your computer and use it in GitHub Desktop.
Save christopherbauer/ccc50b4397e9118c95fd2de026dbabc6 to your computer and use it in GitHub Desktop.
FROM node:21-alpine
WORKDIR /app/api
COPY . .
RUN npm install --silent --legacy-peer-deps
CMD ["npm", "run", "dev"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment