feat(django-redis): docker-compose sample for Django and Redis integration

Signed-off-by: cankush625 <cankush625@gmail.com>
This commit is contained in:
cankush625
2022-03-20 16:24:57 +05:30
parent 04f8c9ca12
commit 067f88f326
20 changed files with 482 additions and 0 deletions

5
django-redis/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.9.11-alpine3.14
WORKDIR /code
COPY . /code
RUN apk add --update alpine-sdk
RUN pip install -r requirements.txt --no-cache-dir