8 lines
125 B
Text
8 lines
125 B
Text
|
FROM python:alpine
|
||
|
|
||
|
COPY exporter.py /exporter.py
|
||
|
|
||
|
RUN pip install --no-cache-dir requests
|
||
|
|
||
|
CMD [ "python", "/exporter.py" ]
|