This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
covid19-dashboard/Dockerfile

11 lines
144 B
Docker

FROM python:3
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN python manage.py migrate
CMD python /app/manage.py runserver