From c2956505a8e4bc996f6923e06d2c7ab52fe6dc82 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Fri, 30 May 2025 17:24:49 -0700 Subject: [PATCH] Destroyed Docker file (textile) --- Docker-file.textile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Docker-file.textile diff --git a/Docker-file.textile b/Docker-file.textile deleted file mode 100644 index bda7bc7..0000000 --- a/Docker-file.textile +++ /dev/null @@ -1,30 +0,0 @@ -FROM ubuntu:latest - -# Install system dependencies -RUN apt-get update && \ - apt-get install -y wget git graphviz && \ - rm -rf /var/lib/apt/lists/* - -# Install Miniconda -ENV PATH="/opt/conda/bin:$PATH" -RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /miniconda.sh && \ - bash /miniconda.sh -b -p /opt/conda && \ - rm /miniconda.sh - -# Set work directory -WORKDIR /app - -# Clone the repository with submodules -RUN git clone --recurse-submodules https://github.com/pablorevilla-meshtastic/meshview.git /app - -# Create conda environment -RUN conda create -n meshview python=3.11 -y - -# Activate environment and install dependencies -RUN /opt/conda/envs/meshview/bin/pip install -r /app/requirements.txt - -# Expose the web server port -EXPOSE 8081 - -# Start the application using the conda environment -CMD ["/opt/conda/envs/meshview/bin/python", "/app/main.py"] \ No newline at end of file