Add-on-template/Dockerfile
AllSpiceAlice f09dc70891
Some checks failed
Lint and test / Test (3.11) (push) Waiting to run
Lint and test / Test (3.12) (push) Waiting to run
Example AllSpice Add-on Template / hardware-devops (push) Has been cancelled
Lint and test / Test (3.10) (push) Has been cancelled
Update Dockerfile
2024-10-15 06:24:03 +00:00

9 lines
172 B
Docker

FROM python:3.12-bookworm
COPY requirements.txt /requirements.txt
COPY entrypoint.py /entrypoint.py
RUN pip install -r /requirements.txt
ENTRYPOINT [ "/entrypoint.py" ]