mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 13:38:41 +00:00
14 lines
232 B
Docker
14 lines
232 B
Docker
FROM node:18.13.0
|
|
|
|
WORKDIR /opt/s2oj_remote_judger
|
|
COPY package*.json ./
|
|
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
ENV LANG=C.UTF-8 TZ="Asia/Shanghai"
|
|
CMD [ "node", "--experimental-specifier-resolution=node", "dist/entrypoint.js" ]
|