-
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
2aecab0
commit 8d14ea7
Showing
1 changed file
with
9 additions
and
7 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,11 +1,13 @@ | ||
FROM python:3.9.19 | ||
WORKDIR /home/abcd-graph | ||
FROM python:3.11.9-slim | ||
|
||
RUN apt-get update && apt-get -y upgrade | ||
RUN apt-get install -y build-essential | ||
WORKDIR /home/abcd-graph | ||
|
||
RUN python -m pip install --upgrade pip | ||
COPY . . | ||
RUN pip install -e . | ||
RUN git config --global --add safe.directory /home/abcd-graph | ||
|
||
COPY pyproject.toml poetry.lock README.md ./ | ||
|
||
COPY src src/ | ||
|
||
RUN pip install --no-cache-dir -e . | ||
|
||
CMD ["/bin/bash"] |
8d14ea7
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.
Coverage Report