mirror of
https://github.com/AllSpiceIO/generate-bom.git
synced 2024-11-23 06:44:41 +00:00
9 lines
172 B
Docker
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" ]
|