Files
tps/Dockerfile
2026-04-26 08:24:11 +08:00

15 lines
374 B
Docker

FROM docker.io/library/debian:12-slim
RUN \
apt-get update && \
apt-get -y install git curl python3 build-essential g++-11 dos2unix && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN bash -c "$(curl -fsSL https://raw.githubusercontent.com/ioi-2017/tps/master/online-installer/install.sh)"
WORKDIR /work
ENTRYPOINT ["bash"]
CMD []