6
mirror of https://github.com/AllSpiceIO/generate-bom.git synced 2024-11-23 06:44:41 +00:00
generate-bom/Dockerfile
2024-05-16 15:13:54 -07: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" ]