8 lines
107 B
Docker
8 lines
107 B
Docker
FROM python:3.9-alpine
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
COPY cleaner.py /cleaner.py
|
|
|
|
CMD ["python", "/cleaner.py"]
|