summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorUlysses Souza <ulyssessouza@gmail.com>2021-03-10 20:43:37 -0300
committerUlysses Souza <ulyssessouza@gmail.com>2021-03-22 10:18:23 -0300
commitc8fba210a222d4f7fde90da8f48db1e7faa637ec (patch)
treec895f87ae9f514e0a47a39326d2a004ffd17275b /Dockerfile
parent31775a1532a66cf8a4c183a99bb5c73623147295 (diff)
downloaddocker-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')
-rw-r--r--Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 7309a83..22732de 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,7 @@
-ARG PYTHON_VERSION=2.7
+ARG PYTHON_VERSION=3.7
FROM python:${PYTHON_VERSION}
-# Add SSH keys and set permissions
-COPY tests/ssh-keys /root/.ssh
-RUN chmod -R 600 /root/.ssh
-
RUN mkdir /src
WORKDIR /src