Husnain
commited on
Commit
•
6b05a5e
1
Parent(s):
1a49592
⚡ [Enhance] Remove pycrypto requirements, and prettify log
Browse files- Dockerfile +3 -18
Dockerfile
CHANGED
@@ -1,23 +1,8 @@
|
|
1 |
-
# Use the official Python 3.11 slim image as the base
|
2 |
FROM python:3.11-slim
|
3 |
-
|
4 |
-
|
5 |
-
WORKDIR /app
|
6 |
-
|
7 |
-
# Copy the requirements.txt file from the host into the /app directory in the container
|
8 |
-
COPY requirements.txt /app
|
9 |
-
|
10 |
-
# Create a .cache directory at the root (/) of the container and set permissions to allow all users
|
11 |
RUN mkdir /.cache && chmod 777 /.cache
|
12 |
-
|
13 |
-
# Install Python dependencies listed in requirements.txt using pip
|
14 |
RUN pip install -r requirements.txt
|
15 |
-
|
16 |
-
# Copy the entire current directory from the host into the /app directory in the container
|
17 |
-
COPY . /app
|
18 |
-
|
19 |
-
# Expose port 23333 to allow communication with services outside the container
|
20 |
EXPOSE 23333
|
21 |
-
|
22 |
-
# Set the default command to run the 'chat_api' module of your application using Python
|
23 |
CMD ["python", "-m", "apis.chat_api"]
|
|
|
|
|
1 |
FROM python:3.11-slim
|
2 |
+
WORKDIR $HOME/app
|
3 |
+
COPY requirements.txt $HOME/app
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
RUN mkdir /.cache && chmod 777 /.cache
|
|
|
|
|
5 |
RUN pip install -r requirements.txt
|
6 |
+
COPY . $HOME/app
|
|
|
|
|
|
|
|
|
7 |
EXPOSE 23333
|
|
|
|
|
8 |
CMD ["python", "-m", "apis.chat_api"]
|