Switch Docker to Python3

This commit is contained in:
Dashie 2022-08-09 09:40:12 +02:00
parent f361e7de1f
commit 13df032314
No known key found for this signature in database
GPG Key ID: C2D57B325840B755
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y \
python3 \
python3-dev \
python3-pip \
git \
curl \
wget \
gcc \
&& rm -rf /var/lib/apt/lists/*
COPY . /root/trackdirect
RUN pip install -r /root/trackdirect/requirements.txt