r2/Dockerfile
lightings 0ea959f7ca ...
2023-04-05 18:50:47 +08:00

13 lines
313 B
Docker

FROM ubuntu:20.04
EXPOSE 3999
EXPOSE 3010
EXPOSE 3011
WORKDIR /works/jc/r2/game-server
RUN apt-get update && apt-get install -y sysstat curl
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get install -y nodejs
RUN mkdir -p /works/jc/r2
COPY . /works/jc/r2
RUN npm install
CMD npm run start