Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 661B

12345678910111213141516171819
  1. # The first instruction is what image we want to base our container on
  2. # We Use an official Python runtime as a parent image
  3. FROM python:3.6
  4. # The enviroment variable ensures that the python output is set straight
  5. # to the terminal with out buffering it first
  6. ENV PYTHONUNBUFFERED 1
  7. # create root directory for our project in the container
  8. RUN mkdir /esther_kleinhenz_ba
  9. # Set the working directory to /esther_kleinhenz_ba
  10. WORKDIR /esther_kleinhenz_ba
  11. # Copy the current directory contents into the container at /esther_kleinhenz_ba
  12. ADD . /esther_kleinhenz_ba/
  13. # Install any needed packages specified in requirements.txt
  14. RUN pip install -r requirements.txt