From b44b458363e284a5630591681076bd392decd44f Mon Sep 17 00:00:00 2001 From: vlad doster Date: Sat, 6 Feb 2021 06:48:17 -0600 Subject: [PATCH] Pin Dockerfile Python version explicitly to a release tag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d9940d5..a057a80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:latest +FROM python:3.9 WORKDIR "/root/Bulk Downloader for Reddit" COPY ./requirements.txt ./ @@ -6,4 +6,4 @@ RUN ["pip", "install", "-r", "requirements.txt"] EXPOSE 8080 EXPOSE 7634 -CMD ["python", "script.py", "-d", "downloads"] \ No newline at end of file +CMD ["python", "script.py", "-d", "downloads"]