Skip to content

Commit

Permalink
Added docker files for crypt4gh
Browse files Browse the repository at this point in the history
  • Loading branch information
dbampalikis committed Oct 18, 2020
1 parent 6fbaf44 commit 3313e3e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dev_tools/Dockerfile-crypt4gh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.8-buster

RUN mkdir -p /working-directory
WORKDIR /working-directory

RUN apt-get update && apt-get -y upgrade
RUN pip3 install crypt4gh

ENTRYPOINT ["/usr/local/bin/crypt4gh"]
9 changes: 9 additions & 0 deletions dev_tools/Dockerfile-crypt4gh-keygen
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.8-buster

RUN mkdir -p /working-directory
WORKDIR /working-directory

RUN apt-get update && apt-get -y upgrade
RUN pip3 install crypt4gh

ENTRYPOINT ["/usr/local/bin/crypt4gh-keygen"]

0 comments on commit 3313e3e

Please sign in to comment.