spiff-arena/dev.Dockerfile
jbirddog 2469941ea6
docker compose overlay file for running run_pyl equivalents (#1100)
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2024-02-27 09:13:02 -05:00

17 lines
339 B
Docker

FROM python:3.12.1-slim-bookworm
WORKDIR /app
RUN apt-get update \
&& apt-get install -y -q git-core curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN git config --global --add safe.directory /app
RUN pip install --upgrade pip
RUN pip install poetry==1.6.1
COPY pyproject.toml poetry.lock .
RUN poetry install --no-root