This commit is contained in:
commit
839591bd2d
3 changed files with 22 additions and 0 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.drone.yml
|
16
.drone.yml
Normal file
16
.drone.yml
Normal 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
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
FROM python
|
||||||
|
|
||||||
|
RUN pip install mdformat mdformat-frontmatter
|
||||||
|
|
||||||
|
CMD ["mdformat"]
|
Loading…
Reference in a new issue