| # Use official Python image | |
| FROM python:3.9 | |
| # Set the working directory inside the container | |
| WORKDIR /code | |
| # Copy the requirements and install them | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
| # Copy all your thesis files into the container | |
| COPY . . | |
| # Run the server | |
| CMD ["python", "merge_server.py"] |