Browse Source

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

Add docker support
dependabot/add-v2-config-file
R4SAS 6 years ago committed by GitHub
parent
commit
a68c7b73b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      Dockerfile

9
Dockerfile

@ -0,0 +1,9 @@ @@ -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" ]
Loading…
Cancel
Save