File size: 827 Bytes
daff13d e2a9bea daff13d 6eb3f8e daff13d e2a9bea daff13d e2a9bea daff13d 6eb3f8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Use the official Python 3.11 slim image as the base
FROM python:3.11-slim
# Set the working directory to /app in the container
WORKDIR /app
# Copy the requirements.txt file from the host into the /app directory in the container
COPY requirements.txt /app
# Create a .cache directory at the root (/) of the container and set permissions to allow all users
RUN mkdir /.cache && chmod 777 /.cache
# Install Python dependencies listed in requirements.txt using pip
RUN pip install -r requirements.txt
# Copy the entire current directory from the host into the /app directory in the container
COPY . /app
# Expose port 23333 to allow communication with services outside the container
EXPOSE 23333
# Set the default command to run the 'chat_api' module of your application using Python
CMD ["python", "-m", "apis.chat_api"]
|