odr_eda_dashboard / Dockerfile
StevenLe456's picture
Changed Dockerfile
30189df
raw
history blame contribute delete
207 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["gunicorn", "app:server", "-b 0.0.0.0:7860"]