multiplayer-test/Dockerfile

11 lines
92 B
Text
Raw Permalink Normal View History

2024-08-30 03:56:03 +01:00
FROM node:alpine
WORKDIR /app
COPY . .
RUN npm ci
ENTRYPOINT [ "npm", "run", "start" ]