mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
8 lines
168 B
Docker
8 lines
168 B
Docker
ARG BASE_IMAGE=ubuntu:22.04
|
|
|
|
FROM ${BASE_IMAGE}
|
|
|
|
RUN apt-get update && apt-get install -y pciutils && apt-get clean
|
|
|
|
COPY aio/ /aio
|
|
ENTRYPOINT [ "/aio/entrypoint.sh" ] |