6 lines
155 B
Docker
Executable File
6 lines
155 B
Docker
Executable File
ARG BASE_IMAGE=ollama/ollama:rocm
|
|
FROM docker.io/${BASE_IMAGE}
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|