Add dockerfile and build job

This commit is contained in:
2026-06-03 11:48:58 -07:00
parent ca400e0b7d
commit 9cb98cfc97
2 changed files with 20 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM alpine:3.14
RUN apk update
RUN apk install rustup postgresql
RUN rustup install stable
+15
View File
@@ -8,3 +8,18 @@ steps:
commands: commands:
- echo "Hello world" - echo "Hello world"
- name: docker-build
image: woodpeckerci/plugin-docker-buildx
settings:
dockerfile: .woodpecker/Dockerfile
registry: gitea.firechicken.net
repo: fedichat
username: ${{ gitea.actor }}
password: ${{ gitea.token }}
when:
- event: push
branch: master
- event: pull_request