Skip to content
This repository was archived by the owner on Mar 15, 2021. It is now read-only.

Commit

Permalink
Basic dockerfile for creating a dockerimage for caspyr
Browse files Browse the repository at this point in the history
  • Loading branch information
codyde committed Dec 11, 2018
1 parent 8a4ef94 commit 27f0d2b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from ubuntu

LABEL maintainer "Cody De Arkand <[email protected]> and Grant Orchard ([email protected])"
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"]

0 comments on commit 27f0d2b

Please sign in to comment.