commit dc1480a4b816da8c7254158a23303fe11ed98f7c Author: moanos Date: Fri Oct 4 16:30:55 2024 +0200 Initial commit diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..fc3c8b1 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,14 @@ +--- + +steps: + build: + image: woodpeckerci/plugin-docker-buildx + settings: + repo: moanos/sphinx-rtd + dockerfile: Dockerfile + tag: latest + username: + from_secret: docker_username + password: + from_secret: docker_password + diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2c413a1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM sphinxdoc/sphinx + +WORKDIR /docs +ADD requirements.txt /docs +RUN pip3 install -r requirements.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fe9fbe1 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +sphinx +sphinx-rtd-theme +sphinx-autobuild