diff --git a/.github/workflows/push-main-image-ghcr.yml b/.github/workflows/push-main-image-ghcr.yml index 303022c..511dade 100644 --- a/.github/workflows/push-main-image-ghcr.yml +++ b/.github/workflows/push-main-image-ghcr.yml @@ -28,6 +28,5 @@ jobs: - name: 'Build Inventory Image' run: | - # docker build . --tag ghcr.io/manimatter/decluttarr:latest docker build docker/. --tag ghcr.io/manimatter/decluttarr:latest docker push ghcr.io/manimatter/decluttarr:latest diff --git a/docker/Dockerfile b/docker/Dockerfile index 8637f00..643c0ea 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -5,7 +5,7 @@ ENV IS_IN_DOCKER 1 WORKDIR /app -COPY docker/requirements.txt ./ +COPY ./docker/requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . .