Skip to content

Instantly share code, notes, and snippets.

@antunesleo
Last active May 12, 2023 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antunesleo/2b49f8e63373bff5dd316d63e20d416b to your computer and use it in GitHub Desktop.
Save antunesleo/2b49f8e63373bff5dd316d63e20d416b to your computer and use it in GitHub Desktop.
FROM python:3.10-slim-buster
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . /app
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment