-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdfe3d3
commit 23a44dc
Showing
10 changed files
with
1,308 additions
and
605 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
config.yaml | ||
__pycache__/ | ||
data/ | ||
titanic/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
FROM ubuntu:22.04 | ||
|
||
WORKDIR ${HOME}/titanic | ||
|
||
# Install Python | ||
RUN apt-get -y update && \ | ||
apt-get install -y python3-pip | ||
|
||
# Install project dependencies | ||
COPY requirements.txt . | ||
RUN pip install -r requirements.txt | ||
|
||
COPY main.py . | ||
COPY src ./src | ||
CMD ["python3", "main.py"] |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# Install Python | ||
apt-get -y update | ||
apt-get install -y python3-pip python3-venv | ||
|
||
# Create empty virtual environment | ||
python3 -m venv titanic | ||
source titanic/bin/activate | ||
|
||
# Install project dependencies | ||
pip install -r requirements.txt |
This file contains 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
Oops, something went wrong.