generated from openclimatefix/ocf-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker #10
Merged
Merged
Docker #10
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
792898d
update docker
peterdudfield d411a19
use pip install -e .
peterdudfield 37e5634
save over old files + save multiple copies
dfulu 86c6600
Merge commit '37e5634cbfefec09e159ab70daf14557c66f0f6c' into docker
peterdudfield 2a01095
install unzip
peterdudfield 6d60036
udpate docker
peterdudfield 8c27e7a
add s3fs
peterdudfield 71322ff
add loggin basic config
peterdudfield cb4e0f2
tidy
peterdudfield 14448e1
text
peterdudfield 1cefa13
Merge branch 'main' into docker
peterdudfield File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,19 +1,21 @@ | ||
# Use an official Python runtime as a parent image | ||
FROM python:3.11-slim as base | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends git && \ | ||
RUN apt-get update | ||
RUN apt-get install unzip -y | ||
RUN apt-get install -y --no-install-recommends git && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Copy the application files | ||
COPY src /app/src | ||
COPY pyproject.toml app/pyproject.toml | ||
COPY README.md app/README.md | ||
|
||
# Set the working directory in the container | ||
WORKDIR /app | ||
|
||
# Copy the requirements file and install | ||
COPY pyproject.toml ./ | ||
RUN pip install --no-cache-dir . | ||
|
||
# Copy the application files | ||
COPY src /app/src | ||
RUN pip install -e . | ||
|
||
# Set the entrypoint command to run the app | ||
CMD ["python", "src/cloudcasting_app/app.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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did this change solve something? I thought the old one was cleaner
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, for some reason that didn't work. Perhaps something to check in the future. It might have done, i just mvoed it back to something i know it definately works