diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3f4a06a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +from ubuntu + +LABEL maintainer "Cody De Arkand and Grant Orchard (gorchard@vmware.com)" +LABEL description "Caspyr Image" + +RUN apt update && apt install -y \ + git \ + python3.6 \ + python3-pip + +RUN pip3 install requests + +COPY caspyr /usr/local/lib/python3.6/dist-packages/caspyr + +CMD ["/bin/sh"] +