feat(devcontainer): Remove ipykernel for Jupyter Notebook

This commit is contained in:
Paul Corbalan 2024-01-23 15:01:47 +01:00
parent eb43d5e7df
commit 48a71497be
1 changed files with 0 additions and 1 deletions

View File

@ -4,7 +4,6 @@ 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"]