diff --git a/.forgejo/workflows/build-with-app-image.yaml b/.forgejo/workflows/build-with-app-image.yaml index aa4903f..041e273 100644 --- a/.forgejo/workflows/build-with-app-image.yaml +++ b/.forgejo/workflows/build-with-app-image.yaml @@ -58,7 +58,7 @@ jobs: mkdir $HOME/.docker echo "{ \"auths\": {} }" > $HOME/.docker/config.json - - name: Log in to container registry + - name: Log in to container registry (with another workaround) uses: actions/podman-login@v1 with: registry: ${{ vars.REGISTRY }} diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 74d96dc..f232619 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -27,10 +27,9 @@ jobs: - uses: actions/checkout@v4 - - name: Create venv - run: uv venv - - name: Install dependencies - run: uv sync + #- name: Install dependencies + # run: uv sync + - name: Run basic test (bootstrap) run: pytest -s tests/basic.py @@ -39,7 +38,7 @@ jobs: mkdir $HOME/.docker echo "{ \"auths\": {} }" > $HOME/.docker/config.json - - name: Log in to container registry + - name: Log in to container registry (with another workaround) uses: actions/podman-login@v1 with: registry: ${{ vars.REGISTRY }} diff --git a/Containerfile b/Containerfile index 65aaae1..4a118cd 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,4 @@ -FROM localhost/trixie_python - -ENV PYTHONPATH $UV_PROJECT_ENVIRONMENT/lib/python3.12/site-packages -ENV PATH=/app/bin:$PATH +FROM localhost/treetrail-backend-base RUN <