feat(devcontainer): Use Python Debian Bookworm image
This commit is contained in:
parent
f7a01e8200
commit
5039579252
|
@ -0,0 +1,9 @@
|
|||
# Get Python Debian Bookworm image
|
||||
FROM python:bookworm
|
||||
|
||||
# Install pip requirements
|
||||
COPY ../requirements.txt /tmp/requirements.txt
|
||||
RUN pip install -r /tmp/requirements.txt
|
||||
|
||||
# Run bash
|
||||
CMD ["/bin/bash"]
|
Loading…
Reference in New Issue