Nginx/Flask/Redis Sample Compose

This commit is contained in:
ajeetraina
2022-03-07 11:03:44 +05:30
parent 84109dcddc
commit 99d423e7dd
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"]