django-musician/Dockerfile
Santiago L 1e3a919390 Rename dockerfile -> Dockerfile
*nix filesystem is case sensitive
2022-03-17 22:49:46 +01:00

14 lines
245 B
Docker

FROM python
WORKDIR /home
RUN python3 -m pip install --upgrade pip
RUN pip install wheel
COPY . .
RUN pip install -r requirements.txt
RUN python manage.py migrate
EXPOSE 8080
ENTRYPOINT [ "python", "manage.py", "runserver", "0.0.0.0:8080" ]