From 0be125fb6601766db96d12f759616a164cb24c88 Mon Sep 17 00:00:00 2001 From: Federico Falconieri Date: Sun, 24 Jul 2022 14:22:40 +0000 Subject: [PATCH] fix: compile packages at installation --- .gitlab-ci.yml | 1 - Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eecbcf3..d174687 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,7 +7,6 @@ include: variables: PYTHON_PACKAGE: 'dgad' - KANIKO_EXTRA_ARGS: "--use-new-run --single-snapshot" kaniko:redis-worker: extends: .kaniko diff --git a/Dockerfile b/Dockerfile index 3258201..fac97ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.9-slim WORKDIR /project COPY pyproject.toml ./ COPY dgad/ dgad/ -RUN pip --disable-pip-version-check install --no-compile . +RUN pip --disable-pip-version-check install . RUN dgad --help ENV TF_CPP_MIN_LOG_LEVEL=3 -- GitLab