datasenseapp / Dockerfile
binaychandra's picture
docker changes wrt app
5a34b73
raw
history blame contribute delete
474 Bytes
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
# Install build essentials and ODBC development headers
RUN apt-get update && \
apt-get install -y build-essential unixodbc-dev
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]