test ci --check

This commit is contained in:
Gsk54
2023-01-10 11:40:48 +01:00
parent cacf0a3132
commit 5c8f0af6a9
2 changed files with 4 additions and 20 deletions

View File

@@ -16,10 +16,11 @@ RUN npm ci
# Bundle app source
COPY . .
# Generate prisma client
RUN npx prisma generate
# Creates a "dist" folder
# Create a "dist" folder
RUN npm run build
# Start the server using the production build
# Start the server
CMD [ "node", "dist/main.js" ]