Spaces:
Running
Running
File size: 168 Bytes
750bbe6 | 1 2 3 4 5 6 7 8 | ARG BASE_IMAGE=ubuntu:24.04
FROM ${BASE_IMAGE}
RUN apt-get update && apt-get install -y pciutils && apt-get clean
COPY aio/ /aio
ENTRYPOINT [ "/aio/entrypoint.sh" ] |