1
0
mirror of https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git synced 2024-09-16 19:05:26 +00:00
UOJ-Luogu-RemoteJudge/luogu_remote_judger/Dockerfile
2023-03-21 20:13:51 +08:00

12 lines
169 B
Docker

FROM node:18.15.0
WORKDIR /opt/s2oj_remote_judger
COPY package*.json ./
RUN npm ci
COPY . .
ENV LANG=C.UTF-8 TZ="Asia/Shanghai"
CMD [ "node", "dist/entrypoint.js" ]