la galère continue

This commit is contained in:
batche
2022-12-13 16:57:00 +01:00
parent a8743940a5
commit 6ca35ccaa7
39 changed files with 2566 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
FROM node:alpine
FROM node:alpine AS build
WORKDIR /usr/app
COPY ./game_back ./
RUN npx tsc
WORKDIR /usr/app/src/server
RUN ls -la
CMD [ "node", "wsServer.js"]