From cc91b94f608e831ed8374e85e7359270bd9ef97c Mon Sep 17 00:00:00 2001 From: epwalsh Date: Mon, 17 Jul 2023 11:36:41 -0700 Subject: [PATCH] try fix --- Dockerfile | 1 + test_fixtures/docker/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0fd33de..378ed00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM python:3.10-alpine WORKDIR /stage COPY . . +RUN pip install --upgrade pip wheel build RUN pip install --no-cache-dir . WORKDIR /app/beaker diff --git a/test_fixtures/docker/Dockerfile b/test_fixtures/docker/Dockerfile index ba9a0c1..2af3709 100644 --- a/test_fixtures/docker/Dockerfile +++ b/test_fixtures/docker/Dockerfile @@ -8,4 +8,5 @@ ARG COMMIT_SHA # Now do some other some other random stuff so that we have more layers to upload. RUN echo ${COMMIT_SHA} > /out.log +RUN pip install --upgrade pip wheel build RUN pip install requests PyYAML pydantic