Skip to content

Commit

Permalink
docker: Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
c0r0n3r committed Aug 4, 2019
1 parent 8553e78 commit 7900ae2
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
**/*.egg-info
**/*.orig
**/*.pyc
**/*.rej
**/*.retry
**/*.swp
**/.coverage
**/.eggs
**/.git
**/.idea
**/.mypy_cache
**/.tox
**/Pipfile
**/Pipfile.lock
**/__pycache__
**/build
**/dist
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3

MAINTAINER Szilárd Pfeiffer "[email protected]"

ADD . /usr/src/cryptolyzer
WORKDIR /usr/src/cryptolyzer
RUN pip3 install .
WORKDIR /usr/src/cryptolyzer/submodules/cryptoparser
RUN pip3 install --force-reinstall .

ENTRYPOINT ["cryptolyze"]
CMD []

0 comments on commit 7900ae2

Please sign in to comment.