minesweeper-frontend/Dockerfile
Jose134 2c10b5f396
All checks were successful
gitea/minesweeper-frontend/pipeline/head This commit looks good
Dockerfile config
2025-01-22 00:04:02 +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=5713", "--host=0.0.0.0"]