From 32a3dbb7724966576d943d80262c38e296afa3c5 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 19 Feb 2021 21:50:34 +0700 Subject: [PATCH] python3 => python --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44cc3b543..960fbf75c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.7-slim as builder # Setup virtualenv ENV VIRTUAL_ENV=/opt/venv -RUN python3 -m venv $VIRTUAL_ENV +RUN python -m venv $VIRTUAL_ENV ENV PATH="$VIRTUAL_ENV/bin:$PATH" # Install build deps