setup basic container
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
jblu 2023-06-25 00:26:06 -05:00
parent 8e50ac1e24
commit 98631e7f5b
3 changed files with 37 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
.gitignore
LICENSE
README.md
.drone.yml

31
.drone.yml Normal file
View File

@ -0,0 +1,31 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: git.jbranan.com
dry_run: false
username: jblu
password:
from_secret: gittea_drone
repo: git.jbranan.com/jblu/hottub
tags:
- latest
when:
branch:
- main
- name: docker-test
image: plugins/docker
settings:
registry: git.jbranan.com
dry_run: false
username: jblu
password:
from_secret: gittea_drone
repo: git.jbranan.com/jblu/hottub
tags:
- dev
when:
branch:
- dev*

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM alpine:latest
ENTRYPOINT sleep infinity