Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
|
|
4 |
|
5 |
ARG DEBIAN_FRONTEND=noninteractive
|
6 |
|
7 |
-
|
8 |
|
9 |
RUN apt-get update && apt-get install --no-install-recommends -y \
|
10 |
build-essential \
|
@@ -21,6 +21,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
21 |
# For hugging face
|
22 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
23 |
|
|
|
24 |
|
25 |
#set up working directory
|
26 |
RUN useradd -m -u 1000 user
|
|
|
4 |
|
5 |
ARG DEBIAN_FRONTEND=noninteractive
|
6 |
|
7 |
+
|
8 |
|
9 |
RUN apt-get update && apt-get install --no-install-recommends -y \
|
10 |
build-essential \
|
|
|
21 |
# For hugging face
|
22 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
23 |
|
24 |
+
RUN pip install pyngrok
|
25 |
|
26 |
#set up working directory
|
27 |
RUN useradd -m -u 1000 user
|