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"]