This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.8' | |
| services: | |
| minio: | |
| image: minio/minio | |
| container_name: minio1 | |
| ports: | |
| - "9000:9000" | |
| - "9001:9001" | |
| volumes: |