Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andiradulescu authored Dec 12, 2023
1 parent c02a918 commit 6dcd0dc
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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: Push dynamic Docker image
run: docker push neobility/osrm-backend-docker

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

0 comments on commit 6dcd0dc

Please sign in to comment.