14 lines
185 B
Text
14 lines
185 B
Text
|
FROM python:3.12-slim
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt requirements.txt
|
||
|
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN chmod +x ./tracer.py
|
||
|
|
||
|
ENTRYPOINT ["python", "tracer.py"]
|