mirror of
https://github.com/Sheldan/grafana-tools.git
synced 2026-01-01 06:59:06 +00:00
7 lines
193 B
Docker
7 lines
193 B
Docker
FROM python:3.10-alpine
|
|
COPY requirements.txt /opt/app/requirements.txt
|
|
WORKDIR /opt/app
|
|
RUN pip install -r requirements.txt
|
|
COPY . /opt/app
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/python", "deploy.py" ] |