Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +0 -7
Dockerfile
CHANGED
@@ -1,13 +1,6 @@
|
|
1 |
FROM python:3
|
2 |
WORKDIR /usr/src/app
|
3 |
COPY requirements.txt ./
|
4 |
-
RUN python -m pip install --upgrade pip setuptools wheel
|
5 |
-
RUN git clone --recurse-submodules https://github.com/arvidn/libtorrent.git
|
6 |
-
RUN cd libtorrent
|
7 |
-
RUN apt-get install libboost-all-dev
|
8 |
-
RUN echo "using gcc ;" >>~/user-config.jam
|
9 |
-
RUN b2 crypto=openssl cxxstd=14 release
|
10 |
-
RUN apt-get install -y ffmpeg
|
11 |
RUN pip install -r requirements.txt
|
12 |
COPY . .
|
13 |
EXPOSE 7860
|
|
|
1 |
FROM python:3
|
2 |
WORKDIR /usr/src/app
|
3 |
COPY requirements.txt ./
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
RUN pip install -r requirements.txt
|
5 |
COPY . .
|
6 |
EXPOSE 7860
|