docker fix

This commit is contained in:
adrian
2025-12-10 22:21:44 +01:00
parent b58488db16
commit da965065ef
2 changed files with 5 additions and 3 deletions

View File

@ -7,10 +7,12 @@ COPY ./style.css .
COPY ./backend.js .
COPY ./package.json .
COPY ./package-lock.json .
COPY ./session .
COPY ./game .
COPY ./session ./session
COPY ./game ./game
RUN npm i
RUN touch ./imposter.db || true
EXPOSE 3000
CMD ["node", "backend.js"]