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
|
|
|
|
|
|
|
|
# Run bash
|
|
|
|
CMD ["/bin/bash"]
|