EvalueTonSavoir/client/Dockerfile

21 lines
321 B
Text
Raw Permalink Normal View History

2024-03-29 20:08:34 -04:00
# client
FROM node:18 AS build
WORKDIR /usr/src/app/client
COPY ./package*.json ./
COPY ./ .
RUN npm install
RUN npm run build
ENV PORT=5173
EXPOSE ${PORT}
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:${PORT} || exit 1
2024-03-29 20:08:34 -04:00
2024-04-05 20:10:59 -04:00
CMD [ "npm", "run", "preview" ]