docker
This commit is contained in:
parent
b2f7640b29
commit
8eaee638a9
2 changed files with 35 additions and 1 deletions
35
.forgejo/workflows/build.yml
Normal file
35
.forgejo/workflows/build.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: host
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Log in to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: git.hydrar.de
|
||||
username: ${{ secrets.registry_user }}
|
||||
password: ${{ secrets.registry_password }}
|
||||
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: git.hydrar.de/jmarya/umbrella:latest
|
|
@ -9,7 +9,6 @@ FROM debian:buster
|
|||
|
||||
RUN apt update && apt upgrade -y
|
||||
|
||||
COPY ./src/extract_metadata.py /extract_metadata.py
|
||||
COPY --from=builder /app/target/release/umbrella /umbrella
|
||||
|
||||
WORKDIR /
|
||||
|
|
Loading…
Add table
Reference in a new issue