minesweeper-frontend/Dockerfile
Jose134 0786dbab17
Some checks failed
gitea/minesweeper-frontend/pipeline/head There was a failure building this commit
Dockerfile config
2025-01-21 23:58: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"]