Skip to content

Commit

Permalink
Merge pull request #31 from notAI-tech/f/fix-docker-image
Browse files Browse the repository at this point in the history
F/fix docker image
  • Loading branch information
preetham committed Aug 27, 2020
2 parents f94b82b + f9589f6 commit 4da53bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.8.5-slim-buster
FROM python:3.7-slim-buster
LABEL author "Preetham Kamidi <kamidipreetham@gmail.com>"
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV VERIFYTWEET_RUN_FOR_WEB=true
RUN apt-get update && \
apt-get install -y git build-essential \
libblas-dev liblapack-dev libatlas-base-dev gfortran \
imagemagick tesseract-ocr libtesseract-dev
imagemagick tesseract-ocr libtesseract-dev libffi-dev
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
python3 -m pipenv run python wsgi.py
python wsgi.py

0 comments on commit 4da53bf

Please sign in to comment.