configuration/ci/Dockerfile

31 lines
523 B
Docker
Raw Permalink Normal View History

2023-01-25 14:16:13 +00:00
###################
# BUILD FOR CI TESTING
###################
2024-01-22 15:57:44 +00:00
FROM docker.io/node:lts-hydrogen
2023-01-25 14:16:13 +00:00
# Create app directory
WORKDIR /usr/src/app
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./
# Install app dependencies
RUN npm ci
# Bundle app source
COPY . .
# Create a "dist" folder
RUN npm run build
# Run unit tests
RUN npm run test:unit:ci
2023-03-30 08:42:38 +00:00
# ESLint / Prettier
RUN npm run lint:check
RUN npm run pretty:check
2023-01-25 14:16:13 +00:00
# Start the server
CMD [ "node", "dist/main.js" ]