Skip to content

Commit

Permalink
Add docker github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ouziel committed Mar 18, 2024
1 parent 4d3a141 commit 2725bbd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build Docker Image

on:
push:
branches: "**"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
docker build -t counterparty .
docker run -rm counterparty counterparty-server -h

0 comments on commit 2725bbd

Please sign in to comment.