Files
lic/front-end/Dockerfile
2026-04-21 18:05:15 -03:00

14 lines
238 B
Docker

FROM node:22-alpine
RUN apk add --no-cache curl
ENV NODE_ENV=production
ENV TZ=America/Sao_Paulo
WORKDIR /app
COPY .output ./.output
RUN cd .output/server && npm install --omit=dev
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]