-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐳 create docker for toolkit python libraries (#254)
* 🐳 create docker for toolkit python libraries * update docker table (#255) Co-authored-by: sickler-alex <[email protected]> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: sickler-alex <[email protected]>
- Loading branch information
1 parent
da6f60a
commit 3683e20
Showing
2 changed files
with
8 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM python:3.13.1-slim | ||
LABEL maintainer="Alex Sickler ([email protected])" | ||
LABEL description="Python3 base with all packages needed for toolkit analysis modules." | ||
|
||
RUN apt update && python -m pip install --upgrade pip && python -m pip install pandas click | ||
|
||
COPY Dockerfile . |