Awesome Docker Compose samples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
awesome-compose/django-redis/Dockerfile

5 lines
140 B

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