Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Use an official Python runtime as a parent image
FROM python:3.9-slim

# Set the working directory in the container
WORKDIR /app

# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
libssl-dev \
libffi-dev \
libxml2-dev \
libxslt1-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
wget \
curl \
libncurses5-dev \
libncursesw5-dev \
libjpeg-dev \
libpng-dev \
libatlas-base-dev \
liblapack-dev \
gfortran \
&& rm -rf /var/lib/apt/lists/*

# Copy the requirements.txt file into the container
COPY requirements.txt .

# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Copy the current directory contents into the container at /app
COPY . .

# Make port 8501 available to the world outside this container
EXPOSE 8501

# Run the app
CMD ["streamlit", "run", "streamlit.py"]
Binary file removed LR2/LR2.docx
Binary file not shown.
Binary file removed LR2/Test_ENB2012_data.xlsx
Binary file not shown.
Binary file removed LR2/Train_ENB2012_data.xlsx
Binary file not shown.
Binary file removed LR3/LR3.docx
Binary file not shown.
43 changes: 0 additions & 43 deletions LR3/Test Real estate.csv

This file was deleted.

373 changes: 0 additions & 373 deletions LR3/Train Real estate.csv

This file was deleted.

2,865 changes: 2,865 additions & 0 deletions Life-Expectancy-Data-Updated.csv

Large diffs are not rendered by default.

64 changes: 0 additions & 64 deletions README.md

This file was deleted.

Binary file modified TS2/TS2.docx
Binary file not shown.
Binary file removed TS3/TS3.docx
Binary file not shown.
Loading