Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

Commit

Permalink
Use workflows for copying logging.conf
Browse files Browse the repository at this point in the history
Signed-off-by: Karanjot Singh <[email protected]>
  • Loading branch information
0xquark committed Nov 16, 2023
1 parent 32edce0 commit e36c897
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit e36c897

Please sign in to comment.