Files
lub-web-monorepo/Dockerfile.backend
T
t.leonards ae33874ae0
Deploy to Dev Server / deploy (push) Has been cancelled
initial commit
2026-03-26 16:10:45 +01:00

8 lines
162 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY apps/backend/package*.json ./
RUN npm install
COPY apps/backend .
RUN npm run build
EXPOSE 3000
CMD ["node", "dist/main.js"]