minesweeper-frontend/Dockerfile
Jose134 122fbc95b2
All checks were successful
gitea/minesweeper-frontend/pipeline/head This commit looks good
Fix
2025-01-22 00:09:40 +01:00

13 lines
189 B
Docker

FROM node:23-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5713
ENTRYPOINT ["npm", "run", "dev", "--", "--port=5173", "--host=0.0.0.0"]