mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
5 lines
207 B
Docker
5 lines
207 B
Docker
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
|
|
RUN apt-get update && apt-get upgrade -y
|
|
RUN pip install pip-tools invoke \
|
|
&& inv sync-dependencies \
|
|
&& pre-commit install --install-hooks
|