darkstorm2150
commited on
Commit
•
9cf4c22
1
Parent(s):
6e09576
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -6,6 +6,9 @@
|
|
6 |
FROM nvidia/cuda:11.7.1-base-ubuntu22.04
|
7 |
ENV DEBIAN_FRONTEND noninteractive
|
8 |
|
|
|
|
|
|
|
9 |
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && rm -rf /var/lib/apt/lists/*
|
10 |
|
11 |
RUN adduser --disabled-password --gecos '' user
|
|
|
6 |
FROM nvidia/cuda:11.7.1-base-ubuntu22.04
|
7 |
ENV DEBIAN_FRONTEND noninteractive
|
8 |
|
9 |
+
RUN source venv/bin/activate
|
10 |
+
RUN pip install httpx==0.24.1
|
11 |
+
|
12 |
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y libgl1 libglib2.0-0 wget git git-lfs python3-pip python-is-python3 && rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
RUN adduser --disabled-password --gecos '' user
|