mirror of
https://github.com/AllSpiceIO/carbon-emission-calculator.git
synced 2025-04-01 01:26:53 +00:00
9 lines
172 B
Docker
9 lines
172 B
Docker
|
FROM python:3.12-bookworm
|
||
|
|
||
|
COPY entrypoint.py /entrypoint.py
|
||
|
COPY requirements.txt /requirements.txt
|
||
|
|
||
|
RUN pip install -r /requirements.txt
|
||
|
|
||
|
ENTRYPOINT [ "/entrypoint.py" ]
|