Initial commit
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Tyler 2023-01-21 00:21:11 -05:00
commit dd08f0967e
3 changed files with 23 additions and 0 deletions

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
kind: pipeline
type: docker
name: default
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: registry.meow.tf/astra/ffmpeg
registry: registry.meow.tf
tags:
- latest

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea/
*.iml

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM debian:stretch-slim
RUN apt-get update && \
apt-get -y ffmpeg && \
rm -rf /var/lib/apt/lists/*