Skip to content

Commit

Permalink
Merge pull request #525 from kodaline/develop_fix_dockerfile
Browse files Browse the repository at this point in the history
FIX: docker build
  • Loading branch information
pieroit authored Oct 25, 2023
2 parents 0f0733c + c994233 commit f69cbdf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

# Uses the `docker/setup-qemu-action@v3`
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

# Uses the `docker/setup-buildx-action@v3`
- name: Set up docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64

# Uses the `docker/login-action`
# action to log in to the Container registry using the account and password that will publish the packages.
# Once published, the packages are scoped to the account defined here.
Expand Down
2 changes: 1 addition & 1 deletion core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.10.11-slim-bullseye
### PREPARE BUILD WITH NECESSARY FILES AND FOLDERS ###
RUN mkdir -p /app && mkdir -p /admin
COPY ./pyproject.toml /app/pyproject.toml
COPY ./cat/plugins /app/cat/plugins
COPY ./cat /app/cat
COPY ./install_plugin_dependencies.py /app/install_plugin_dependencies.py

### SYSTEM SETUP ###
Expand Down

0 comments on commit f69cbdf

Please sign in to comment.