Skip to content

Commit

Permalink
merged dockerfile in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
andiradulescu committed Dec 14, 2023
1 parent fc11c6d commit c5d2ea8
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,31 @@ on:
workflow_dispatch:

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build the dynamic Docker image
run: docker build -t neobility/osrm-backend-docker dynamic

- name: Build the static Romania Docker image
run: docker build --build-arg MAP_URL=https://download.geofabrik.de/europe/romania-latest.osm.pbf -t neobility/osrm-backend-docker:romania prebuilt


- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build the dynamic Docker image
run: docker build -t neobility/osrm-backend-docker dynamic

- name: Push dynamic Docker image
run: docker push neobility/osrm-backend-docker


- name: Build the static Romania Docker image
run: docker build --build-arg MAP_URL=https://download.geofabrik.de/europe/romania-latest.osm.pbf -t neobility/osrm-backend-docker:romania prebuilt

- name: Push static Romania Docker image
run: docker push neobility/osrm-backend-docker:romania

- name: Build the merged Docker image
run: docker build -t neobility/osrm-backend-docker:merged -f ./tools/Dockerfile-merged ./tools/

- name: Push merged Docker image
run: docker push neobility/osrm-backend-docker:merged

0 comments on commit c5d2ea8

Please sign in to comment.