S2OJ/remote_judger/Dockerfile

14 lines
232 B
Docker
Raw Normal View History

2023-01-20 17:54:49 +08:00
FROM node:18.13.0
2023-01-19 21:26:59 +08:00
WORKDIR /opt/s2oj_remote_judger
COPY package*.json ./
2023-01-22 16:25:26 +08:00
RUN npm ci
2023-01-19 21:26:59 +08:00
COPY . .
RUN npm run build
ENV LANG=C.UTF-8 TZ="Asia/Shanghai"
2023-01-20 16:35:02 +08:00
CMD [ "node", "--experimental-specifier-resolution=node", "dist/entrypoint.js" ]