ladogton2010 commited on
Commit
38f7593
·
verified ·
1 Parent(s): 7930431

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -12,13 +12,18 @@ RUN apt update -y; apt install -y locate; updatedb
12
  RUN mkdir -p /content
13
  RUN chmod 777 /content
14
 
 
 
 
 
 
15
  ##ENTRYPOINT \
16
  ##echo Holaaaaaaaaaaa && \
17
  ##jupyter notebook --no-browser --ip 0.0.0.0 --port 8888 && \
18
  ##tail -F error.log
19
 
20
  # Exponer el puerto 8080 dentro del contenedor
21
- EXPOSE 8080
22
 
23
  # Comando de entrada (si es necesario, reemplázalo por el comando adecuado)
24
  CMD ["/bin/bash"]
 
12
  RUN mkdir -p /content
13
  RUN chmod 777 /content
14
 
15
+ RUN mkdir -p /.cache/pip
16
+ RUN chmod 777 /.cache/pip
17
+
18
+ ENV LISTEN_ADDRESS=0.0.0.0
19
+
20
  ##ENTRYPOINT \
21
  ##echo Holaaaaaaaaaaa && \
22
  ##jupyter notebook --no-browser --ip 0.0.0.0 --port 8888 && \
23
  ##tail -F error.log
24
 
25
  # Exponer el puerto 8080 dentro del contenedor
26
+ EXPOSE 9000
27
 
28
  # Comando de entrada (si es necesario, reemplázalo por el comando adecuado)
29
  CMD ["/bin/bash"]