Merge pull request #2196 from dhiltgen/remove_rocm_image
Switch back to ubuntu base
This commit is contained in:
commit
197e420a97
1 changed files with 2 additions and 1 deletions
|
@ -109,7 +109,8 @@ ARG CGO_CFLAGS
|
|||
RUN go build .
|
||||
|
||||
# Runtime stages
|
||||
FROM --platform=linux/amd64 rocm/dev-centos-7:6.0-complete as runtime-amd64
|
||||
FROM --platform=linux/amd64 ubuntu:22.04 as runtime-amd64
|
||||
RUN apt-get update && apt-get install -y ca-certificates
|
||||
COPY --from=build-amd64 /go/src/github.com/jmorganca/ollama/ollama /bin/ollama
|
||||
FROM --platform=linux/arm64 ubuntu:22.04 as runtime-arm64
|
||||
RUN apt-get update && apt-get install -y ca-certificates
|
||||
|
|
Loading…
Reference in a new issue