Update Dockerfile
Browse files- Dockerfile +22 -22
Dockerfile
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
-
FROM python:3.9
|
2 |
|
3 |
-
RUN useradd -m -u 1000 user
|
4 |
-
USER user
|
5 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
|
7 |
-
WORKDIR /app
|
8 |
|
9 |
-
COPY --chown=user ./requirements.txt requirements.txt
|
10 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
|
12 |
-
COPY --chown=user . /app
|
13 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
14 |
# # Use an official Python runtime as a parent image
|
15 |
-
|
16 |
|
17 |
-
#
|
18 |
-
|
19 |
|
20 |
-
#
|
21 |
-
|
22 |
|
23 |
-
#
|
24 |
-
|
25 |
|
26 |
-
#
|
27 |
-
|
28 |
|
29 |
-
#
|
30 |
-
|
31 |
|
32 |
-
#
|
33 |
-
|
|
|
1 |
+
# FROM python:3.9
|
2 |
|
3 |
+
# RUN useradd -m -u 1000 user
|
4 |
+
# USER user
|
5 |
+
# ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
|
7 |
+
# WORKDIR /app
|
8 |
|
9 |
+
# COPY --chown=user ./requirements.txt requirements.txt
|
10 |
+
# RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
|
12 |
+
# COPY --chown=user . /app
|
13 |
+
# CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
14 |
# # Use an official Python runtime as a parent image
|
15 |
+
FROM python:3.9
|
16 |
|
17 |
+
# Set the working directory in the container
|
18 |
+
WORKDIR /app
|
19 |
|
20 |
+
# Copy the requirements file into the container
|
21 |
+
COPY requirements.txt .
|
22 |
|
23 |
+
# Install the dependencies
|
24 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
25 |
|
26 |
+
# Copy the FastAPI app into the container
|
27 |
+
COPY . .
|
28 |
|
29 |
+
# Expose the port the app runs on
|
30 |
+
EXPOSE 8000
|
31 |
|
32 |
+
# Command to run the FastAPI app
|
33 |
+
CMD ["uvicorn", "app:app", "--host", "--reload"]
|