Files
plain-ub-overfork/Dockerfile
2024-01-20 18:28:47 +05:30

18 lines
553 B
Docker

FROM python:3.11.2
WORKDIR /app/
RUN sed -i.bak 's/us-west-2\.ec2\.//' /etc/apt/sources.list && \
apt -qq update && apt -qq upgrade -y && \
apt -qq install -y --no-install-recommends \
apt-utils \
curl \
git \
wget && \
pip install -U pip setuptools wheel && \
git config --global user.email "98635854+thedragonsinn@users.noreply.github.com" && \
git config --global user.name "thedragonsinn"
EXPOSE 8080
CMD bash -c "$(curl -fsSL https://raw.githubusercontent.com/thedragonsinn/plain-ub/main/docker_start_cmd)"