Spaces:
Sleeping
Sleeping
update dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -6,9 +6,10 @@ FROM ghcr.io/quarto-dev/quarto:${QUARTO_VERSION} AS builder
|
|
| 6 |
COPY src /app
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
-
# Install Python requirements
|
| 10 |
USER root
|
| 11 |
-
RUN apt-get update && apt-get install -y python3 python3-pip
|
|
|
|
| 12 |
COPY requirements.txt /app/
|
| 13 |
RUN pip3 install -r requirements.txt
|
| 14 |
|
|
|
|
| 6 |
COPY src /app
|
| 7 |
WORKDIR /app
|
| 8 |
|
| 9 |
+
# Install Python requirements and wget
|
| 10 |
USER root
|
| 11 |
+
RUN apt-get update && apt-get install -y python3 python3-pip wget
|
| 12 |
+
|
| 13 |
COPY requirements.txt /app/
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|