thejagstudio commited on
Commit
4ef8e81
1 Parent(s): dbb6f51

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,13 +1,12 @@
1
  FROM ubuntu:24.04
2
  RUN apt-get update
3
  RUN apt-get install -y python3-pip
4
- RUN apt-get install -y python3-venv libtorrent-rasterbar-dev
5
  WORKDIR /code
6
  RUN python3 -m venv /code/venv
7
  COPY ./requirements.txt /code/requirements.txt
8
  RUN /code/venv/bin/pip install --upgrade pip
9
  RUN /code/venv/bin/pip install -r /code/requirements.txt
10
- RUN /code/venv/bin/pip install git+https://github.com/arvidn/libtorrent.git
11
  COPY . .
12
  ENV PATH="/code/venv/bin:$PATH"
13
  EXPOSE 7860
 
1
  FROM ubuntu:24.04
2
  RUN apt-get update
3
  RUN apt-get install -y python3-pip
4
+ RUN apt-get install -y python3-venv
5
  WORKDIR /code
6
  RUN python3 -m venv /code/venv
7
  COPY ./requirements.txt /code/requirements.txt
8
  RUN /code/venv/bin/pip install --upgrade pip
9
  RUN /code/venv/bin/pip install -r /code/requirements.txt
 
10
  COPY . .
11
  ENV PATH="/code/venv/bin:$PATH"
12
  EXPOSE 7860