achief

Dockerfile

May 14th, 2023
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. FROM python:3.10.6-buster
  2. WORKDIR /app
  3. COPY requirements.txt requirements.txt
  4. RUN pip install -r requirements.txt
  5. COPY . .
  6. CMD ["python", "manage.py", "runserver"]
Advertisement
Add Comment
Please, Sign In to add comment