Merge pull request 'First commit' (#1) from master into main

Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2025-05-04 19:26:46 +00:00
3 changed files with 38 additions and 0 deletions
+3
View File
@@ -1,2 +1,5 @@
# Jupyter-my-own-image
This is my custom image of python jupyter.
This repo was created to run jupyter in docker on raspberry pi (arm)
+25
View File
@@ -0,0 +1,25 @@
FROM ubuntu:focal
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
python3-dev \
build-essential \
pandoc \
texlive-xetex \
libsm6 \
libxext6 \
libxrender-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip3 install --no-cache-dir --upgrade pip \
&& pip3 install --no-cache-dir -r requirements.txt
EXPOSE 8888
CMD ["jupyter", "lab", "--ip=0.0.0.0", "--port=8888", "--allow-root", "--no-browser", "--NotebookApp.token=''"]
+10
View File
@@ -0,0 +1,10 @@
jupyterlab
notebook
nbconvert
numpy
pandas
matplotlib
scikit-learn
scikit-image
torch
torchvision