1
1
mirror of https://github.com/r4sas/PBinCLI synced 2025-01-09 06:18:00 +00:00

Merge pull request #9 from reneluria/reneluria-patch-2

Add docker support
This commit is contained in:
R4SAS 2018-06-03 22:22:10 +03:00 committed by GitHub
commit a68c7b73b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT [ "./cli" ]