Files
GoMembership/frontend/Dockerfile
2025-03-01 11:13:27 +01:00

14 lines
161 B
Docker

FROM node:23-alpine AS deploy-node
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "build/index.js"]