14 lines
238 B
Docker
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"]
|