123456789101112131415161718192021 |
- from python
- COPY . /usr/src/app
- WORKDIR /usr/src/app
- # Server port
- EXPOSE 8000
- RUN apt-get update
- # update project source code if necessary (use by default https protocol)
- RUN git remote set-url origin https://github.com/prise-3d/Thesis-WebExpe-Django.git
- RUN git pull origin master
- # Install dependencies and prepare project
- RUN python --version
- RUN pip install -r requirements.txt
- RUN python manage.py makemigrations
- RUN python manage.py migrate
- CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
|