mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-04 09:46:43 +02:00
GHActions unable to find files
This commit is contained in:
parent
3be613531e
commit
caca580c97
2 changed files with 10 additions and 6 deletions
12
.github/workflows/docker-image.yml
vendored
12
.github/workflows/docker-image.yml
vendored
|
@ -23,27 +23,31 @@ jobs:
|
||||||
- name: Build and push Base image
|
- name: Build and push Base image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: ./container/base/
|
context: .
|
||||||
|
file: ./container/base/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: codeforleipzig/stadtratmonitor-base:latest
|
tags: codeforleipzig/stadtratmonitor-base:latest
|
||||||
|
|
||||||
- name: Build and push Deploy image
|
- name: Build and push Deploy image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: ./container/deploy/
|
context: .
|
||||||
|
file: ./container/deploy/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: codeforleipzig/stadtratmonitor-deploy:latest
|
tags: codeforleipzig/stadtratmonitor-deploy:latest
|
||||||
|
|
||||||
- name: Build and push Develop image
|
- name: Build and push Develop image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: ./container/develop/
|
context: .
|
||||||
|
file: ./container/develtop/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: codeforleipzig/stadtratmonitor-develop:latest
|
tags: codeforleipzig/stadtratmonitor-develop:latest
|
||||||
|
|
||||||
- name: Build and push Test image
|
- name: Build and push Test image
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: ./container/test/
|
context: .
|
||||||
|
file: ./container/test/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: codeforleipzig/stadtratmonitor-test:latest
|
tags: codeforleipzig/stadtratmonitor-test:latest
|
|
@ -26,8 +26,8 @@ RUN chown -R srm:srm /home/srm/
|
||||||
|
|
||||||
WORKDIR /home/srm/build/
|
WORKDIR /home/srm/build/
|
||||||
|
|
||||||
COPY ../../Gemfile Gemfile
|
COPY Gemfile Gemfile
|
||||||
COPY ../../package.json package.json
|
COPY package.json package.json
|
||||||
|
|
||||||
RUN npm install -g yarn sass
|
RUN npm install -g yarn sass
|
||||||
RUN bundle config without development test
|
RUN bundle config without development test
|
||||||
|
|
Loading…
Add table
Reference in a new issue