1
0
Fork 0

Initial commit
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Andrew Tomaka 2023-02-19 20:32:20 -05:00
commit 839591bd2d
Signed by: atomaka
GPG Key ID: 61209BF70A5B18BE
3 changed files with 22 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
.drone.yml

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
name: build
kind: pipeline
steps:
- name: docker-build
image: plugins/docker
settings:
pull_image: true
registry: docker.atomaka.com
repo: docker.atomaka.com/mdformat
tags:
- latest
- ${DRONE_TAG}
trigger:
event: tag

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM python
RUN pip install mdformat mdformat-frontmatter
CMD ["mdformat"]