13 lines
185 B
Docker
13 lines
185 B
Docker
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"]
|