FROM us-docker.pkg.dev/colab-images/public/runtime RUN mkdir -p /.cache/matplotlib RUN chmod 777 /.cache/matplotlib RUN touch /var/colab/app.log RUN chmod 777 /var/colab/app.log RUN mkdir -p /.config/matplotlib RUN chmod 777 /.config/matplotlib RUN mkdir /.local RUN chmod 777 /.local #EXPOSE 8888 RUN apt update -y; apt install -y locate; updatedb RUN mkdir -p /content RUN chmod 777 /content RUN mkdir -p /.cache/pip RUN chmod 777 /.cache/pip ENV LISTEN_ADDRESS=0.0.0.0 ##ENTRYPOINT \ ##echo Holaaaaaaaaaaa && \ ##jupyter notebook --no-browser --ip 0.0.0.0 --port 8888 && \ ##tail -F error.log # Exponer el puerto 8080 dentro del contenedor EXPOSE 9000 # Comando de entrada (si es necesario, reemplázalo por el comando adecuado) CMD ["/bin/bash"]