Skip to content

Commit

Permalink
Fix paths/contexts
Browse files Browse the repository at this point in the history
  • Loading branch information
mjanez authored Sep 7, 2023
1 parent 5d6d620 commit 9e87674
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: ./ckan-ogc
context: .
file: ./ckan-ogc/Dockerfile.dev
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: ./ckan-ogc
context: .
file: ./ckan-ogc/Dockerfile
4 changes: 2 additions & 2 deletions ckan-ogc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ COPY pyproject.toml pdm.lock .

RUN pdm install --no-self --group prod

COPY conf/config.yaml.template config.yaml
COPY docker-entrypoint.d/entrypoint.sh entrypoint.sh
COPY ckan-ogc/conf/config.yaml.template config.yaml
COPY ckan-ogc/docker-entrypoint.d/entrypoint.sh entrypoint.sh
COPY ogc2ckan ogc2ckan
COPY data data

Expand Down
4 changes: 2 additions & 2 deletions ckan-ogc/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ COPY pyproject.toml pdm.lock .

RUN pdm install --no-self --group prod

COPY conf/config.yaml.template config.yaml
COPY docker-entrypoint.d/entrypoint_dev.sh entrypoint.sh
COPY ckan-ogc/conf/config.yaml.template config.yaml
COPY ckan-ogc/docker-entrypoint.d/entrypoint_dev.sh entrypoint.sh
COPY ogc2ckan ogc2ckan
COPY data data

Expand Down
4 changes: 2 additions & 2 deletions ckan-ogc/Dockerfile.ghcr
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ COPY pyproject.toml pdm.lock .

RUN pdm install --no-self --group prod

COPY conf/config.yaml.template config.yaml
COPY docker-entrypoint.d/entrypoint.sh entrypoint.sh
COPY ckan-ogc/conf/config.yaml.template config.yaml
COPY ckan-ogc/docker-entrypoint.d/entrypoint.sh entrypoint.sh
COPY ogc2ckan ogc2ckan
COPY data data

Expand Down
4 changes: 2 additions & 2 deletions ckan-ogc/Dockerfile.ghcr.dev
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ COPY pyproject.toml pdm.lock .

RUN pdm install --no-self --group prod

COPY conf/config.yaml.template config.yaml
COPY docker-entrypoint.d/entrypoint_dev.sh entrypoint.sh
COPY ckan-ogc/conf/config.yaml.template config.yaml
COPY ckan-ogc/docker-entrypoint.d/entrypoint_dev.sh entrypoint.sh
COPY ogc2ckan ogc2ckan
COPY data data

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
ogc2ckan:
container_name: ckan-ogc-dev
build:
context: ckan-ogc/
dockerfile: Dockerfile.dev
context: .
dockerfile: ckan-ogc/Dockerfile.dev
env_file:
- .env
logging:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.ghcr.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
ogc2ckan:
container_name: ckan-ogc-dev
build:
context: ckan-ogc/
dockerfile: Dockerfile.ghcr.dev
context: .
dockerfile: ckan-ogc/Dockerfile.ghcr.dev
env_file:
- .env
logging:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
ogc2ckan:
container_name: ckan-ogc
build:
context: ckan-ogc/
dockerfile: Dockerfile.ghcr
context: .
dockerfile: ckan-ogc/Dockerfile.ghcr
env_file:
- .env
logging:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ services:
ogc2ckan:
container_name: ckan-ogc
build:
context: ckan-ogc/
dockerfile: Dockerfile
context: .
dockerfile: ckan-ogc/Dockerfile
env_file:
- .env
logging:
Expand Down

0 comments on commit 9e87674

Please sign in to comment.