diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..e14482c --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.drone.yml +.git +Dockerfile \ No newline at end of file diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..cc66972 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,44 @@ +kind: pipeline +type: docker +name: docker-amd64 +platform: + os: linux + arch: amd64 + +steps: + - name: docker + image: plugins/docker + settings: + username: + from_secret: git_username + password: + from_secret: git_password + registry: git.gammaspectra.live + repo: git.gammaspectra.live/s.o.n.g/music-samples + auto_tag: true + auto_tag_suffix: linux-amd64 + custom_dns: 8.8.8.8 + squash: true +--- +kind: pipeline +type: docker +name: docker-arm64 +platform: + os: linux + arch: arm64 + +steps: + - name: docker + image: plugins/docker + settings: + username: + from_secret: git_username + password: + from_secret: git_password + registry: git.gammaspectra.live + repo: git.gammaspectra.live/s.o.n.g/music-samples + auto_tag: true + auto_tag_suffix: linux-arm64 + custom_dns: 8.8.8.8 + squash: true +... \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e51eefd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM alpine:latest + +WORKDIR /samples +ADD . /samples \ No newline at end of file