diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..24cca50 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +kind: pipeline +name: default + +steps: + - name: build container + image: plugins/docker + settings: + dockerfile: Dockerfile + username: + from_secret: registry-username + password: + from_secret: registry-password + registry: https://cs-registry.ddnss.de + repo: cs-registry.ddnss.de/${DRONE_REPO_OWNER}/old_editors + dry_run: false + purge: true + insecure: false + tags: + - ${DRONE_TAG} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c7f311d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM php:apache-bookworm + +COPY . /var/www/html \ No newline at end of file