File size: 1,441 Bytes
927f804
 
 
91b7976
927f804
 
 
 
91b7976
 
927f804
 
 
bd57234
47e3f12
91b7976
927f804
bd57234
91b7976
 
bd57234
91b7976
 
 
 
927f804
91b7976
 
 
 
 
 
 
927f804
91b7976
 
 
 
 
 
bd57234
91b7976
26534b4
7b341f2
 
 
91b7976
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive

# Install dependencies
RUN apt-get update && \
    apt-get install -y lxde wget \
    tigervnc-standalone-server git \
    tigervnc-common

# Clone noVNC repository
RUN git clone https://github.com/novnc/noVNC.git /opt/noVNC \
    && cd /opt/noVNC \
    && git submodule update --init --recursive
RUN mkdir /workspace
ENV HOME="/workspace"
# Install Miniconda
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
    && bash Miniconda3-latest-Linux-x86_64.sh -b -p /workspace/miniconda3

# Ensure Conda is on PATH and properly initialized
ENV PATH="/workspace/miniconda3/bin:$PATH"

# Initialize Conda and configure environment
RUN conda init bash \
    && conda config --env --add channels conda-forge \
    && conda config --env --set channel_priority strict

# Install required packages
RUN conda install gdal -y \
    && pip install jupyterlab==4.2.5 tornado==6.2 ipywidgets \
    && conda install sqlite -y

# Set the default shell
ENV SHELL=/bin/bash

# Copy the start script
COPY ./start.sh /start

# Make sure the script is executable
RUN chmod +x /start
RUN chmod +x /workspace/miniconda3/etc/profile.d/conda.sh
# Define the entrypoint to start your application
RUN chown -R root:root /workspace
RUN mkdir -p /workspace/.local/share/jupyter/runtime \
    && chown -R root:root /workspace/.local \
    && chmod -R 777 /workspace/.local
CMD ["/start"]