python3 => python

This commit is contained in:
Luke Childs
2021-02-19 13:36:41 -03:00
committed by fiatjaf
parent 02a8b86168
commit 32a3dbb772
+1 -1
View File
@@ -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