init
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
commit
e63d65eee9
@ -0,0 +1,22 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
platform:
|
||||
arch: amd64
|
||||
os: linux
|
||||
steps:
|
||||
- name: test
|
||||
image: python:3.9.5
|
||||
commands:
|
||||
- pip install -r requirements.txt
|
||||
- pytest
|
||||
- name: publish
|
||||
image: plugins/docker:19.03.8
|
||||
environment:
|
||||
PLUGIN_REGISTRY: 10.10.14.176:5000
|
||||
PLUGIN_REPO: 10.10.14.176:5000/python/example
|
||||
settings:
|
||||
insecure: true
|
||||
tags:
|
||||
- latest
|
||||
- ${DRONE_STAGE_OS}-${DRONE_STAGE_ARCH}-${DRONE_REPO_BRANCH}-${DRONE_COMMIT_SHA:0:8}
|
@ -0,0 +1,9 @@
|
||||
FROM python:3.9.5
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD [ "python", "./example.py" ]
|
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env python
|
||||
print('Hello World!')
|
Loading…
Reference in new issue