2017-10-23 02:47:26 +00:00
|
|
|
FROM python:3.6-alpine3.6
|
|
|
|
|
2017-10-23 12:59:44 +00:00
|
|
|
ENV OJ_ENV production
|
2017-10-23 02:47:26 +00:00
|
|
|
|
2017-11-24 19:37:40 +00:00
|
|
|
ADD . /app
|
2017-11-25 05:11:24 +00:00
|
|
|
WORKDIR /app
|
2017-11-25 11:12:37 +00:00
|
|
|
|
2017-12-01 11:03:30 +00:00
|
|
|
HEALTHCHECK --interval=5s --retries=3 CMD python2 /app/deploy/health_check.py
|
|
|
|
|
2017-11-25 11:12:37 +00:00
|
|
|
RUN printf "https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.6/community/\nhttps://mirrors.tuna.tsinghua.edu.cn/alpine/v3.6/main/" > /etc/apk/repositories && \
|
|
|
|
apk add --update --no-cache build-base nginx openssl curl unzip supervisor jpeg-dev zlib-dev postgresql-dev freetype-dev && \
|
|
|
|
pip install --no-cache-dir -r /app/deploy/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple && \
|
|
|
|
apk del build-base --purge
|
2017-11-25 05:11:24 +00:00
|
|
|
RUN curl -L $(curl -s https://api.github.com/repos/QingdaoU/OnlineJudgeFE/releases/latest | grep /dist.zip | cut -d '"' -f 4) -o dist.zip && \
|
|
|
|
unzip dist.zip && \
|
|
|
|
rm dist.zip
|
2017-12-01 11:03:30 +00:00
|
|
|
|
2017-10-23 02:47:26 +00:00
|
|
|
CMD sh /app/deploy/run.sh
|