feat(devcontainer): Add ipykernel for Jupyter

This commit is contained in:
Paul Corbalan 2024-01-09 23:03:36 +01:00
parent 57926016b4
commit 12f09b3e73
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@ FROM python:3.11-bookworm
# Install pip requirements
COPY ../requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN pip install ipykernel
# Run bash
CMD ["/bin/bash"]