Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docker support #86

Merged
merged 13 commits into from
Oct 19, 2024
Prev Previous commit
Next Next commit
fix: copy error
  • Loading branch information
adriablancafort committed Oct 18, 2024
commit 5631869217acd053eb6c0dbc44367ffd53f24eb1
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -2,7 +2,8 @@ FROM node:alpine AS build

WORKDIR /app

COPY package*.json ./ prisma/schema.prisma ./prisma/schema.prisma
COPY package*.json ./
COPY prisma/schema.prisma ./prisma/schema.prisma

# Clean install
RUN npm ci