Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
FROM nikolaik/python-nodejs:python3.11-nodejs21
|
2 |
|
3 |
-
|
4 |
-
# Install nginx and netcat-openbsd
|
5 |
USER root
|
6 |
-
RUN apt-get -y update && apt-get -y install nginx netcat-openbsd
|
7 |
|
8 |
# Setup directory structure for Nginx
|
9 |
RUN mkdir -p /var/cache/nginx \
|
@@ -30,6 +29,9 @@ RUN curl -fsSL https://ollama.com/install.sh | sh
|
|
30 |
RUN mkdir -p /.ollama && chmod 777 /.ollama
|
31 |
WORKDIR /.ollama
|
32 |
|
|
|
|
|
|
|
33 |
# Switch back to the 'pn' user for installing dependencies and building the app
|
34 |
USER pn
|
35 |
ENV HOME=/home/pn \
|
|
|
1 |
FROM nikolaik/python-nodejs:python3.11-nodejs21
|
2 |
|
3 |
+
# Install nginx, netcat-openbsd, and lsof
|
|
|
4 |
USER root
|
5 |
+
RUN apt-get -y update && apt-get -y install nginx netcat-openbsd lsof
|
6 |
|
7 |
# Setup directory structure for Nginx
|
8 |
RUN mkdir -p /var/cache/nginx \
|
|
|
29 |
RUN mkdir -p /.ollama && chmod 777 /.ollama
|
30 |
WORKDIR /.ollama
|
31 |
|
32 |
+
# Set the OLLAMA_HOST environment variable
|
33 |
+
ENV OLLAMA_HOST=0.0.0.0
|
34 |
+
|
35 |
# Switch back to the 'pn' user for installing dependencies and building the app
|
36 |
USER pn
|
37 |
ENV HOME=/home/pn \
|