ci with broker --check

This commit is contained in:
Gsk54
2023-01-10 08:54:29 +01:00
parent d679d5b1e3
commit b8b1109fcf
4 changed files with 23 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
###################
# BUILD FOR LOCAL DEVELOPMENT
# BUILD FOR CI TESTING
###################
FROM node:18-alpine3.16
@@ -19,5 +19,8 @@ COPY . .
# Creates a "dist" folder
RUN npm run build
# Execute test suite
# Execute unit tests
RUN npm run test:unit
# Start the server using the production build
CMD [ "node", "dist/main.js" ]