mirror of
https://github.com/nikdoof/ohayodash.git
synced 2025-12-13 10:02:17 +00:00
6 lines
241 B
Docker
6 lines
241 B
Docker
FROM python:3.9-alpine
|
|
WORKDIR /app
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
COPY ./ohayodash /app/ohayodash
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:80", "ohayodash.app:app"] |