diff --git a/.dockerignore b/.dockerignore index b302bec..d1a8d5f 100644 --- a/.dockerignore +++ b/.dockerignore @@ -11,6 +11,11 @@ Dockerfile *.csv *.toml *.git* +.DS_Store +.vscode/* +thunder-tests/* +.drone.yml + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..33481ac --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +kind: pipeline +name: default + +steps: +- name: docker + image: plugins/docker + settings: + registry: git.jbranan.com + dry_run: true + username: jblu + password: + from_secret: gittea_drone + repo: jblu/crane + tags: + - latest + - main + when: + branch: + - main \ No newline at end of file