mirror of
https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git
synced 2024-11-09 16:18:49 +00:00
12 lines
169 B
Docker
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" ]
|