Update Dockerfile
Browse files- Dockerfile +10 -3
Dockerfile
CHANGED
@@ -1,16 +1,23 @@
|
|
1 |
-
#
|
2 |
-
# you will also find guides on how best to write your Dockerfile
|
3 |
-
|
4 |
FROM python:3.9
|
5 |
|
|
|
6 |
RUN useradd -m -u 1000 user
|
7 |
USER user
|
8 |
ENV PATH="/home/user/.local/bin:$PATH"
|
9 |
|
|
|
10 |
WORKDIR /app
|
11 |
|
|
|
12 |
COPY --chown=user ./requirements.txt requirements.txt
|
13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
14 |
|
|
|
15 |
COPY --chown=user . /app
|
|
|
|
|
|
|
|
|
|
|
16 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
1 |
+
# Base image
|
|
|
|
|
2 |
FROM python:3.9
|
3 |
|
4 |
+
# Create a new user for security
|
5 |
RUN useradd -m -u 1000 user
|
6 |
USER user
|
7 |
ENV PATH="/home/user/.local/bin:$PATH"
|
8 |
|
9 |
+
# Set the working directory
|
10 |
WORKDIR /app
|
11 |
|
12 |
+
# Copy requirements and install dependencies
|
13 |
COPY --chown=user ./requirements.txt requirements.txt
|
14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
16 |
+
# Copy the application code
|
17 |
COPY --chown=user . /app
|
18 |
+
|
19 |
+
# Expose the port on which the app will run
|
20 |
+
EXPOSE 7860
|
21 |
+
|
22 |
+
# Start the FastAPI application
|
23 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|