Files
imposter/dockerfile
2025-12-10 22:21:44 +01:00

19 lines
285 B
Plaintext

FROM node:latest
WORKDIR /app
COPY ./index.html .
COPY ./index.js .
COPY ./style.css .
COPY ./backend.js .
COPY ./package.json .
COPY ./package-lock.json .
COPY ./session ./session
COPY ./game ./game
RUN npm i
RUN touch ./imposter.db || true
EXPOSE 3000
CMD ["node", "backend.js"]