20 lines
528 B
Docker
20 lines
528 B
Docker
FROM node:latest as builder
|
|
WORKDIR /usr/src/app
|
|
COPY ./package*.json ./
|
|
COPY ./.npmrc ./
|
|
RUN npm install
|
|
COPY . .
|
|
# Ideally the tests should be run separately in a CI/CD workflow rather than during the build
|
|
# Currently, it does prevent a container being published with failing tests
|
|
RUN npm run test
|
|
RUN npm run build
|
|
|
|
FROM node:20-slim
|
|
EXPOSE 8460
|
|
WORKDIR /usr/src/app
|
|
COPY ./mail-templates/* ./mail-templates/
|
|
COPY ./package*.json ./
|
|
RUN npm ci --omit=dev
|
|
COPY --from=builder /usr/src/app/dist/ ./
|
|
CMD [ "node" , "app.js" ]
|