mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 18:08:41 +00:00
13 lines
196 B
Docker
13 lines
196 B
Docker
FROM node:18.13.0
|
|
|
|
WORKDIR /opt/s2oj_remote_judger
|
|
COPY package*.json ./
|
|
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
CMD [ "node", "--experimental-specifier-resolution=node", "dist/entrypoint.js" ]
|