Spaces:
Runtime error
Runtime error
Commit
·
91f7580
1
Parent(s):
b2b1565
update docker file
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -9,9 +9,6 @@ COPY ./requirements.txt /code/requirements.txt
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
-
RUN python -m playwright install-deps
|
13 |
-
RUN python -m playwright install chromium
|
14 |
-
|
15 |
RUN wget -O - https://www.openssl.org/source/openssl-1.1.1u.tar.gz | tar zxf - \
|
16 |
&& cd openssl-1.1.1u \
|
17 |
&& ./config --prefix=/usr/local \
|
@@ -25,7 +22,8 @@ RUN apt-get update
|
|
25 |
RUN apt-get install build-essential libssl-dev ca-certificates libasound2 wget
|
26 |
RUN apt-get install -y ffmpeg
|
27 |
|
28 |
-
|
|
|
29 |
# RUN apt-get update && \
|
30 |
# apt-get install -y build-essential libssl-dev ca-certificates libasound2 wget && \
|
31 |
# wget -O - https://www.openssl.org/source/openssl-1.1.1u.tar.gz | tar zxf - && \
|
|
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
|
|
|
|
|
|
12 |
RUN wget -O - https://www.openssl.org/source/openssl-1.1.1u.tar.gz | tar zxf - \
|
13 |
&& cd openssl-1.1.1u \
|
14 |
&& ./config --prefix=/usr/local \
|
|
|
22 |
RUN apt-get install build-essential libssl-dev ca-certificates libasound2 wget
|
23 |
RUN apt-get install -y ffmpeg
|
24 |
|
25 |
+
RUN python -m playwright install-deps
|
26 |
+
RUN python -m playwright install chromium
|
27 |
# RUN apt-get update && \
|
28 |
# apt-get install -y build-essential libssl-dev ca-certificates libasound2 wget && \
|
29 |
# wget -O - https://www.openssl.org/source/openssl-1.1.1u.tar.gz | tar zxf - && \
|