mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-28 16:12:13 +00:00
19 lines
608 B
Docker
19 lines
608 B
Docker
FROM python:3.8-alpine3.14
|
|
|
|
ENV OJ_ENV production
|
|
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
HEALTHCHECK --interval=5s --retries=3 CMD python3 /app/deploy/health_check.py
|
|
|
|
RUN 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 && \
|
|
apk del build-base --purge
|
|
|
|
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
|
|
|
|
ENTRYPOINT /app/deploy/entrypoint.sh
|