Fix dockerfile

This commit is contained in:
2025-12-27 21:04:36 +01:00
parent c667deff8b
commit 6e67ff9ca6

View File

@ -10,8 +10,8 @@ RUN npm install
# Copy the rest of the code
COPY . .
RUN npx prisma generate &&
npx prisma db seed
RUN npx prisma generate
RUN npx prisma db seed
# Expose the dev port
EXPOSE 3000