Skip to content

Instantly share code, notes, and snippets.

@christopherbauer
Created April 25, 2024 21:11
Show Gist options
  • Save christopherbauer/90b874157e441e698fc43691cc7bf66b to your computer and use it in GitHub Desktop.
Save christopherbauer/90b874157e441e698fc43691cc7bf66b to your computer and use it in GitHub Desktop.
FROM node:21-alpine
WORKDIR /app/web
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