Skip to content

Instantly share code, notes, and snippets.

View sarthak-sarbahi's full-sized avatar
🌈
Live a life worth remembering!

Sarthak Sarbahi sarthak-sarbahi

🌈
Live a life worth remembering!
View GitHub Profile
@sarthak-sarbahi
sarthak-sarbahi / Dockerfile
Created January 5, 2024 16:13
Dockerfile for JupyterLab: whylogs & PySpark
# Use the PySpark Notebook image as the base
FROM quay.io/jupyter/pyspark-notebook
# Install the required Python libraries
RUN pip install whylogs whylogs[viz] whylogs[spark]
# Copy the CSV file into the container
COPY data/patient_data.csv /home/patient_data.csv
@sarthak-sarbahi
sarthak-sarbahi / docker-compose.yml
Created December 20, 2023 20:02
Start JupyterLab and MinIO using Docker Compose
version: '3.8'
services:
minio:
image: minio/minio
container_name: minio1
ports:
- "9000:9000"
- "9001:9001"
volumes: