2024-10-18 04:48:18 +00:00
|
|
|
FROM python:3.12-slim
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
2024-10-19 01:05:30 +00:00
|
|
|
RUN pip install .
|
2024-10-18 04:48:18 +00:00
|
|
|
|
2024-10-19 01:05:30 +00:00
|
|
|
ENTRYPOINT ["export_trace"]
|