Build Dockerfile image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-08-01 21:16:36 +02:00
parent af63704c59
commit 411df03b47
3 changed files with 51 additions and 0 deletions

3
.dockerignore Normal file
View file

@ -0,0 +1,3 @@
.drone.yml
.git
Dockerfile

44
.drone.yml Normal file
View file

@ -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
...

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM alpine:latest
WORKDIR /samples
ADD . /samples