Monopoly / dockerfile-monopoly-server
Haruka041
chore: reset repository history with clean initial import
5b324f1
Raw
History Blame Contribute Delete
258 Bytes
FROM node:16-alpine
RUN npm config set registry https://registry.npmmirror.com/
WORKDIR .
COPY ./tencent-cloud.ts .
COPY ./global.config.ts .
WORKDIR /monopoly-server
COPY ./monopoly-server .
RUN npm install
EXPOSE 84
EXPOSE 85
CMD ["npm", "run", "start"]