From ed30b834868c88876e33c91a710bec1bb19cbfec Mon Sep 17 00:00:00 2001 From: Alexander Zoechbauer Date: Wed, 16 Aug 2023 15:16:28 +0200 Subject: [PATCH] test --- .github/workflows/build-docker.yml | 1 + ai/containers/Dockerfile | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) 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