Fix paths to pyproject.toml and README in dockerfile.gateway. Also update context in publish-images.yml

This commit is contained in:
Hemang
2025-05-14 12:26:15 +02:00
committed by Hemang Sarkar
parent ed50670bef
commit e32ec74ed2
2 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ jobs:
- name: build gateway image
uses: docker/build-push-action@v5
with:
context: ./gateway
context: .
file: ./gateway/Dockerfile.gateway
platforms: linux/amd64
push: true

View File

@@ -2,11 +2,11 @@ FROM python:3.12
WORKDIR /srv/gateway
COPY ../pyproject.toml ./pyproject.toml
COPY pyproject.toml ./pyproject.toml
COPY . .
COPY ../README.md ./README.md
COPY README.md ./README.md
RUN pip install --no-cache-dir .