Skip to content

Commit

Permalink
feat(app): add dockerization workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Feb 10, 2024
1 parent 60507fd commit 8a62e72
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/dockerize.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Dockerize latest version
on:
workflow_dispatch:
push:
branches: [main]
jobs:
dockerize_and_push:
name: 'Build and test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nixpacks
run: |
curl -LO https://github.com/railwayapp/nixpacks/releases/download/v1.21.1/nixpacks-v1.21.1-amd64.deb
sudo dpkg -i nixpacks-v1.21.1-amd64.deb
- name: Build image
run: nixpacks build .

0 comments on commit 8a62e72

Please sign in to comment.