mirror of
https://github.com/AllSpiceIO/cofactr-cogs.git
synced 2025-01-15 11:22:57 +00:00
9 lines
152 B
Docker
9 lines
152 B
Docker
FROM python:3.12-bookworm
|
|
|
|
COPY entrypoint.py /entrypoint.py
|
|
COPY cofactr_cogs /cofactr_cogs
|
|
|
|
RUN pip install requests
|
|
|
|
ENTRYPOINT [ "/entrypoint.py" ]
|