2024-06-24 11:44:10 -07:00
|
|
|
FROM python
|
2024-06-24 08:05:47 -07:00
|
|
|
LABEL author="Gleb Tcivie"
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
2024-06-24 11:44:10 -07:00
|
|
|
COPY .env .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
|
|
|
|
COPY exporter/ exporter
|
2024-06-24 08:05:47 -07:00
|
|
|
COPY main.py .
|
|
|
|
CMD ["python3", "-u", "main.py"]
|