FROM mcr.microsoft.com/devcontainers/base:jammy

# Install pip
RUN apt-get update && \
    apt-get install -y python3-pip && \
    pip3 install hatch
