refactoring; add service with local pypi instance for testing

This commit is contained in:
Robert Kaussow
2019-02-08 11:28:34 +01:00
parent 11dc2fc9b8
commit 36ba180fec
41 changed files with 668 additions and 6602 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM plugins/base:linux-arm64
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" \
org.label-schema.name="Drone Ansible" \
org.label-schema.vendor="Drone.IO Community" \
org.label-schema.schema-version="1.0"
RUN apk add -U ca-certificates python3 && \
rm -rf /var/cache/apk/* && \
pip3 install --no-cache-dir --upgrade pip setuptools wheel six twine
ADD release/linux/amd64/drone-pypi /bin/
ENTRYPOINT ["/bin/drone-pypi"]