remove old stacks

This commit is contained in:
2023-09-11 20:12:49 +02:00
parent 205eae2264
commit 4c850f6c0b
174 changed files with 30 additions and 13842 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM docker.io/library/alpine:3.18
RUN apk add --no-cache tini
COPY target/x86_64-unknown-linux-musl/release/packager /usr/local/bin/packager
ENTRYPOINT ["tini", "--"]
CMD [ \
"/usr/local/bin/packager", \
"--database-url", "/var/lib/packager/db/db.sqlite", \
"serve", \
"--bind", "0.0.0.0", \
"--port", "3000" \
]