1
0
mirror of https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git synced 2025-03-23 14:57:05 +00:00

12 lines
169 B
Docker
Raw Permalink Normal View History

2023-03-21 20:13:51 +08:00
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" ]