Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Update Dockerfile #62

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM python:3.7-alpine
FROM python:3.8-alpine
ENV BASE_URL=https://711-goodcall.api.tigerspike.com/api/v1/
ENV TZ=UTC
ENV PRICE_URL=https://projectzerothree.info/api.php?format=json
ENV DEVICE_NAME=SM-G973FZKAXSA
ENV OS_VERSION="Android 9.0.0"

RUN apk --update add --no-cache bash tzdata build-base libffi-dev openssl-dev

Expand All @@ -9,4 +14,5 @@ RUN pip install --no-cache-dir -r requirements.txt

COPY . .

EXPOSE 5000
ENTRYPOINT [ "python", "app.py" ]