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