feat(devcontainer): Use Python Debian Bookworm image

This commit is contained in:
Paul Corbalan 2023-12-11 08:44:53 +01:00
parent f7a01e8200
commit 5039579252
1 changed files with 9 additions and 0 deletions

9
.devcontainer/Dockerfile Normal file
View File

@ -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"]