Add Drone CI pipeline

This commit is contained in:
Alexander Renz 2025-04-26 16:02:59 +02:00
parent 1c6477531c
commit 6a098d35d6

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
kind: pipeline
name: build
steps:
- name: build docker image
image: docker
commands:
- docker build -t my-hmac-file-server .
- docker run -d -p 8080:8080 my-hmac-file-server
- docker ps # Optional: To verify the container is running