Skip to content

Commit

Permalink
Add docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Mar 15, 2023
1 parent 5a7b478 commit 8850c8a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Image CI

on: [push, pull_request]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: docker login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: build the Docker image
run: docker build -t groestlcoin/lightning:v23.02.2 .

- name: docker push
run: docker push groestlcoin/lightning:v23.02.2

0 comments on commit 8850c8a

Please sign in to comment.