Skip to content
Snippets Groups Projects
Select Git revision
  • ce304b66fe205cf10c81bd132c223c489daf2426
  • main default protected
  • renovate/sentry-sdk-2.x
  • renovate/django-5.x
  • renovate/whitenoise-6.x
  • develop protected
  • new-changes
  • v3.0.3
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.1
  • v3.0.0-develop.1
  • v3.0.0
  • v2.1.0
  • v2.0.3
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.1
  • v1.0.0
23 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 230 B
    FROM python:3.11
    
    WORKDIR /app
    COPY requirements.txt requirements.txt
    RUN pip install -r requirements.txt
    RUN rm requirements.txt
    
    COPY . /app
    RUN mkdir -p /app/db/
    RUN chmod +x /app/start.sh
    EXPOSE 8000
    ENTRYPOINT ["./start.sh"]