add Dockerfile
Some checks failed
CI / Tests (pull_request) Failing after 2m19s
CI / Style (pull_request) Successful in 8s

This commit is contained in:
Dan Anglin 2024-10-14 19:03:35 +01:00
parent de9c02c102
commit 62914aca00
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
2 changed files with 7 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
*
!__build/indieauth-server

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM gcr.io/distroless/static-debian12
COPY ./__build/indieauth-server /indieauth-server
ENTRYPOINT ["/indieauth-server"]