All checks were successful
gitea/minesweeper-frontend/pipeline/head This commit looks good
13 lines
189 B
Docker
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"] |