Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +31 -1
Dockerfile
CHANGED
@@ -1,13 +1,43 @@
|
|
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 |
-
|
|
|
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
# Install necessary system dependencies for Pyppeteer/Chrome
|
4 |
+
RUN apt-get update && apt-get install -y \
|
5 |
+
libnss3 \
|
6 |
+
libxss1 \
|
7 |
+
libasound2 \
|
8 |
+
libatk1.0-0 \
|
9 |
+
libatk-bridge2.0-0 \
|
10 |
+
libcups2 \
|
11 |
+
libdbus-1-3 \
|
12 |
+
libdrm2 \
|
13 |
+
libgbm1 \
|
14 |
+
libnspr4 \
|
15 |
+
libxcomposite1 \
|
16 |
+
libxrandr2 \
|
17 |
+
xdg-utils \
|
18 |
+
libu2f-udev \
|
19 |
+
libvulkan1 \
|
20 |
+
fonts-liberation \
|
21 |
+
libappindicator3-1 \
|
22 |
+
lsb-release \
|
23 |
+
wget \
|
24 |
+
ca-certificates \
|
25 |
+
libgtk-3-0 \
|
26 |
+
--no-install-recommends
|
27 |
+
|
28 |
+
# Create a non-root user and set the environment path
|
29 |
RUN useradd -m -u 1000 user
|
30 |
USER user
|
31 |
ENV PATH="/home/user/.local/bin:$PATH"
|
32 |
|
33 |
WORKDIR /app
|
34 |
|
35 |
+
# Install Python dependencies as non-root user
|
36 |
COPY --chown=user ./requirements.txt requirements.txt
|
37 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
38 |
|
39 |
+
# Copy application code as non-root user
|
40 |
COPY --chown=user . /app
|
41 |
+
|
42 |
+
# Command to run the FastAPI application
|
43 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|