mirror of
https://github.com/AllSpiceIO/cofactr-cogs.git
synced 2025-04-07 14:25:29 +00:00
8 lines
120 B
Docker
8 lines
120 B
Docker
FROM python:3.12-bookworm
|
|
|
|
COPY entrypoint.py /entrypoint.py
|
|
|
|
RUN pip install requests
|
|
|
|
ENTRYPOINT [ "/entrypoint.py" ]
|