File size: 387 Bytes
f7096a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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"]