mirror of
https://github.com/humanlayer/humanlayer.git
synced 2025-08-20 19:01:22 +03:00
14 lines
260 B
Docker
14 lines
260 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.11-slim-bookworm as prod
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
pip install -r requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["01-math_example.py"]
|