feat: add python 3.10

This commit is contained in:
Alex
2021-10-19 20:03:47 +03:00
parent 4393b67ef6
commit d1d8af7e92
3 changed files with 17 additions and 0 deletions

14
python/3.10/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.10-slim
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
RUN apt update \
&& apt -y install git gcc g++ ca-certificates dnsutils curl iproute2 ffmpeg procps \
&& useradd -m -d /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]