2023-12-11 08:19:47 +00:00
|
|
|
# Get Python 3.11 Debian Bookworm image
|
|
|
|
FROM python:3.11-bookworm
|
2023-12-11 07:44:53 +00:00
|
|
|
|
|
|
|
# Install pip requirements
|
|
|
|
COPY ../requirements.txt /tmp/requirements.txt
|
|
|
|
RUN pip install -r /tmp/requirements.txt
|
2024-01-09 22:03:36 +00:00
|
|
|
RUN pip install ipykernel
|
2023-12-11 07:44:53 +00:00
|
|
|
|
|
|
|
# Run bash
|
|
|
|
CMD ["/bin/bash"]
|