diff --git a/.github/workflows/python-publish.yaml b/.github/workflows/python-publish.yaml index a377f06fb..3108ac2fb 100644 --- a/.github/workflows/python-publish.yaml +++ b/.github/workflows/python-publish.yaml @@ -61,6 +61,10 @@ jobs: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Copy logging.conf + run: | + mkdir -p ./containers/base + cp ./pyatlan/logging.conf ./containers/base/ - name: Set image tag from file id: set-image-tag run: | diff --git a/containers/Dockerfile b/containers/Dockerfile index 63d6a59da..18108d357 100644 --- a/containers/Dockerfile +++ b/containers/Dockerfile @@ -4,8 +4,8 @@ ARG VERSION WORKDIR /app -RUN pip3 install pyatlan==${VERSION} +COPY base /app/ -COPY ../pyatlan/logging.conf . +RUN pip3 install pyatlan==${VERSION} CMD ["python"]