mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
16 lines
No EOL
280 B
Docker
16 lines
No EOL
280 B
Docker
FROM node:18 AS backend
|
|
|
|
WORKDIR /usr/src/app/serveur
|
|
|
|
COPY ./package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY ./ .
|
|
|
|
EXPOSE 4400
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:${PORT}/health || exit 1
|
|
|
|
CMD ["npm", "run", "start"] |