21 lines
549 B
Docker
21 lines
549 B
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.13-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Create the data dir (this should be a volume on the local machine to store data)
|
|
RUN mkdir -p data
|
|
|
|
# Copy the requirements file into the container
|
|
COPY requirements.txt .
|
|
|
|
# Install any needed packages specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the client code into the container
|
|
COPY ./app/ .
|
|
|
|
# Run client.py when the container launches
|
|
CMD ["python", "client.py"]
|