Initial version just show the env vars available
This commit is contained in:
commit
40e699e8b4
|
@ -0,0 +1,8 @@
|
||||||
|
# Docker image for the Drone build runner
|
||||||
|
#
|
||||||
|
# CGO_ENABLED=0 go build -a -tags netgo
|
||||||
|
# docker build --rm=true -t plugins/drone-cache .
|
||||||
|
|
||||||
|
FROM python
|
||||||
|
COPY ./example.py /bin/example
|
||||||
|
ENTRYPOINT ["/bin/example"]
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
import os
|
||||||
|
|
||||||
|
for k,v in os.environ.items():
|
||||||
|
print('%s=%s' % (k, v))
|
Loading…
Reference in New Issue