mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-03 17:26: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
|
||||
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
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue