Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ubuntu-docker

on: [push, pull_request]

jobs:
ubuntu-docker:
runs-on: ubuntu-latest
name: A job to build and run strfry Ubuntu using Docker

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build the Ubuntu jammy Docker image for strfry
run: |
docker build . --file ubuntu.Dockerfile --tag jammy/strfry

- name: Run the Ubuntu jammy Docker image for strfry
run: |
docker images
pwd
docker run -v /home/runner/work/strfry/strfry/strfry-db:/app/strfry-db -v /home/runner/work/strfry/strfry/strfry.conf:/app/strfry.conf -t jammy/strfry &