diff options
author | Ulysses Souza <ulyssessouza@gmail.com> | 2021-03-10 20:43:37 -0300 |
---|---|---|
committer | Ulysses Souza <ulyssessouza@gmail.com> | 2021-03-22 10:18:23 -0300 |
commit | c8fba210a222d4f7fde90da8f48db1e7faa637ec (patch) | |
tree | c895f87ae9f514e0a47a39326d2a004ffd17275b /Dockerfile-py3 | |
parent | 31775a1532a66cf8a4c183a99bb5c73623147295 (diff) | |
download | docker-py-set-minimal-python-to-3_6.tar.gz |
Remove support to pre python 3.6set-minimal-python-to-3_6
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
Diffstat (limited to 'Dockerfile-py3')
-rw-r--r-- | Dockerfile-py3 | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Dockerfile-py3 b/Dockerfile-py3 deleted file mode 100644 index 22732de..0000000 --- a/Dockerfile-py3 +++ /dev/null @@ -1,15 +0,0 @@ -ARG PYTHON_VERSION=3.7 - -FROM python:${PYTHON_VERSION} - -RUN mkdir /src -WORKDIR /src - -COPY requirements.txt /src/requirements.txt -RUN pip install -r requirements.txt - -COPY test-requirements.txt /src/test-requirements.txt -RUN pip install -r test-requirements.txt - -COPY . /src -RUN pip install . |