Browse Source

Add docker support

dependabot/add-v2-config-file
Rene Luria 6 years ago
parent
commit
230737cdee
No known key found for this signature in database
GPG Key ID: FFA540631A620B59
  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