mirror of
https://github.com/QingdaoU/OnlineJudgeFE.git
synced 2024-12-29 16:01:51 +00:00
9 lines
180 B
Docker
9 lines
180 B
Docker
FROM node:6.11-alpine
|
|
|
|
RUN apk add --no-cache nginx git python build-base
|
|
|
|
VOLUME [ "/OJ_FE", "/var/log/nginx/", "/data/avatar"]
|
|
EXPOSE 80
|
|
|
|
CMD ["/bin/sh", "/OJ_FE/deploy/run.sh"]
|