-
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.
re-execute pipeline, break docker files
- Loading branch information
1 parent
e535623
commit b61fb48
Showing
22 changed files
with
71,244 additions
and
63,740 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Use the official Python image as the base image | ||
FROM python:3.10 | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy requirements file and install dependencies | ||
COPY requirements.txt . | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# Copy the rest of the application code | ||
COPY . . | ||
|
||
# Expose the port that the app runs on | ||
EXPOSE 8000 | ||
|
||
# Install ploomber | ||
RUN pip install ploomber | ||
|
||
# Remove files ending in .metadata from the notebooks folder | ||
RUN find notebooks -type f -name "*.metadata" -exec rm -f {} \; | ||
|
||
CMD ["ploomber", "build"] |
51,445 changes: 25,730 additions & 25,715 deletions
51,445
data/predicted-data/predicted_co2_rating.csv
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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.