dockerfile: attempt to fix build

This commit is contained in:
James Woglom
2021-10-20 00:48:46 -04:00
parent 82ec1b4c1b
commit bec1cef1f1
+4
View File
@@ -18,6 +18,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends gcc
# Install python dependencies in /.venv
COPY Pipfile .
COPY Pipfile.lock .
COPY setup.cfg .
COPY setup.py .
COPY pyproject.toml .
COPY tconnectsync .
RUN PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy
FROM base AS runtime