Nginx/Flask/Redis Sample Compose

Signed-off-by: ajeetraina <ajeetraina@gmail.com>
This commit is contained in:
ajeetraina
2022-03-07 11:03:44 +05:30
parent 5e93fe3ca4
commit a062b3a749
8 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM python
COPY . /
RUN pip install -r requirements.txt && pip install gunicorn
RUN /usr/local/bin/python -m pip install --upgrade pip
ENTRYPOINT ["/start.sh"]