diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index c7b7e420..c99cccb7 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -44,6 +44,7 @@ jobs: uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 with: context: ./ai/containers + dockerfile: ./ai/containers/Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/ai/containers/Dockerfile b/ai/containers/Dockerfile index d1b3f47f..a6b1bc27 100644 --- a/ai/containers/Dockerfile +++ b/ai/containers/Dockerfile @@ -4,14 +4,12 @@ FROM python:3.9.17-slim AS build WORKDIR ai -RUN ls - # Copy the required files to the container COPY env-files env-files COPY src src COPY tests tests COPY setup.py setup.py -#COPY README.md README.md +COPY README.md README.md # Set environment variable ENV LC_ALL=C