mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-22 14:08:42 +00:00
38 lines
1.3 KiB
Docker
38 lines
1.3 KiB
Docker
FROM ubuntu:22.04
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends gnupg curl ca-certificates apt-transport-https && \
|
|
curl https://git.m.ac/api/packages/baoshuo/debian/repository.key -o /etc/apt/trusted.gpg.d/gitmac-baoshuo.asc && \
|
|
echo "deb https://git.m.ac/api/packages/baoshuo/debian all main" | tee -a /etc/apt/sources.list.d/gitmac-baoshuo.list && \
|
|
apt-get update && \
|
|
for pkg in vim ntp zip unzip wget build-essential fp-compiler s2oj-gcc python2.7 python3.10 python3-requests libseccomp-dev openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk tzdata; do \
|
|
cnt=10 && \
|
|
while ! apt-get install -y "$pkg"; do \
|
|
if [ $cnt -le 0 ]; then \
|
|
echo "Failed to install $pkg" && \
|
|
exit 1; \
|
|
fi; \
|
|
cnt=$((cnt - 1)); \
|
|
done; \
|
|
done
|
|
|
|
ADD . /opt/uoj_judger
|
|
WORKDIR /opt/uoj_judger
|
|
|
|
# Install environment and set startup script
|
|
RUN sh install.sh -p && echo -e "\
|
|
#!/bin/sh\n\
|
|
if [ ! -f \"/opt/uoj_judger/.conf.json\" ]; then\n\
|
|
cd /opt/uoj_judger && sh install.sh -i\n\
|
|
fi\n\
|
|
service ntp start\n\
|
|
su judger -c \"/opt/uoj_judger/judge_client start\"\n\
|
|
exec bash\n" >/opt/up && chmod +x /opt/up
|
|
|
|
ENV LANG=C.UTF-8 TZ=Asia/Shanghai
|
|
EXPOSE 2333
|
|
CMD /opt/up
|