Start of dockerfile for running server in docker

This commit is contained in:
2026-06-17 17:34:07 +02:00
parent 0ab6904c11
commit 96921d83c0
2 changed files with 23 additions and 0 deletions

View File

@@ -25,6 +25,15 @@ elif [ $1 = "clean" ]; then
rm -rf ./output/
elif [ $1 = "dockerbuild" ]; then
echo "Building docker image"
docker image build \
--file Dockerfile \
--progress plain \
--tag folder-opds-server \
.
else
echo "Invalid command."