1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-29 07:38:02 +02:00

Added Flask/Redis

Signed-off-by: ajeetraina <ajeetraina@gmail.com>
This commit is contained in:
ajeetraina 2022-03-07 11:45:07 +05:30
parent a062b3a749
commit 2652caaf60
17 changed files with 36 additions and 85 deletions

5
flask-redis/Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM python
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
CMD python app.py