Files
RFP_Finanzen/Dockerfile
2026-04-08 16:30:44 +02:00

20 lines
295 B
Docker

FROM node:20-bookworm-slim
WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1
RUN apt-get update && apt-get install -y openssl && rm -rf /var/lib/apt/lists/*
COPY package.json ./
RUN npm install
COPY . .
RUN npx prisma generate
RUN npm run build
EXPOSE 3000
CMD ["sh", "./docker/entrypoint.sh"]