File size: 569 Bytes
2f49beb
 
 
 
 
 
bccd6a2
 
b6d4739
2f49beb
 
 
 
c285c68
2f49beb
 
 
 
6706140
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use the official Python image from Docker Hub
FROM python:3.9

# Set the working directory in the container
WORKDIR /code

# Installation of portaudio19-dev
RUN apt-get update && apt-get install -y portaudio19-dev

# Copy the requirements file into the container at /code
COPY ./requirements.txt /code/requirements.txt

# Install the Python dependencies
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# Copy the current directory contents into the container at /code
COPY . .

# Define the command to start the Flask app
CMD ["python", "main.py"]