mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
9 lines
406 B
Docker
9 lines
406 B
Docker
# https://github.com/microsoft/vscode-dev-containers/blob/main/containers/python-3/README.md
|
|
ARG VARIANT=3.13-bookworm
|
|
FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT}
|
|
COPY requirements.txt /tmp/pip-tmp/
|
|
RUN python3 -m pip install --upgrade pip \
|
|
&& python3 -m pip install --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
|
|
&& pipx install pre-commit ruff \
|
|
&& pre-commit install
|