Initial commit

This commit is contained in:
2021-12-23 17:45:21 +00:00
commit 5cf890d3ae
14 changed files with 1273 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.9
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"]