From caca580c97e4e74c14a549fc90c4994db080e366 Mon Sep 17 00:00:00 2001 From: vrifox Date: Thu, 4 May 2023 16:56:25 +0200 Subject: [PATCH] GHActions unable to find files --- .github/workflows/docker-image.yml | 12 ++++++++---- container/base/Dockerfile | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 133fd05..ed79cbf 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -23,27 +23,31 @@ jobs: - name: Build and push Base image uses: docker/build-push-action@v2 with: - context: ./container/base/ + context: . + file: ./container/base/Dockerfile push: true tags: codeforleipzig/stadtratmonitor-base:latest - name: Build and push Deploy image uses: docker/build-push-action@v2 with: - context: ./container/deploy/ + context: . + file: ./container/deploy/Dockerfile push: true tags: codeforleipzig/stadtratmonitor-deploy:latest - name: Build and push Develop image uses: docker/build-push-action@v2 with: - context: ./container/develop/ + context: . + file: ./container/develtop/Dockerfile push: true tags: codeforleipzig/stadtratmonitor-develop:latest - name: Build and push Test image uses: docker/build-push-action@v2 with: - context: ./container/test/ + context: . + file: ./container/test/Dockerfile push: true tags: codeforleipzig/stadtratmonitor-test:latest \ No newline at end of file diff --git a/container/base/Dockerfile b/container/base/Dockerfile index 5a81bd1..47b32f2 100755 --- a/container/base/Dockerfile +++ b/container/base/Dockerfile @@ -26,8 +26,8 @@ RUN chown -R srm:srm /home/srm/ WORKDIR /home/srm/build/ -COPY ../../Gemfile Gemfile -COPY ../../package.json package.json +COPY Gemfile Gemfile +COPY package.json package.json RUN npm install -g yarn sass RUN bundle config without development test