Skip to content

Commit

Permalink
COPY
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Curtin <[email protected]>
  • Loading branch information
ericcurtin committed Nov 4, 2024
1 parent f47c951 commit 6451d1c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion container-images/cuda/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN dnf install -y git cmake gcc-c++ && \
# Set the temporary installation directory
ENV INSTALL_PREFIX=/tmp/install

COPY ../scripts /scripts
COPY ../../scripts /scripts
RUN chmod +x /scripts/*.sh && \
/scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \
"$INSTALL_PREFIX" "-DGGML_CUDA=1"
Expand Down
2 changes: 1 addition & 1 deletion container-images/ramalama/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN dnf install -y glslang && \
dnf clean all && \
rm -rf /var/cache/*dnf*

COPY ../scripts /scripts
COPY ../../scripts /scripts
RUN chmod +x /scripts/*.sh && \
/scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \
"/usr" "-DGGML_KOMPUTE=1"
Expand Down
2 changes: 1 addition & 1 deletion container-images/rocm/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN curl --retry 8 --retry-all-errors -o \
cat /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official
RUN rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Official

COPY ../scripts /scripts
COPY ../../scripts /scripts
RUN dnf install -y rocm-dev hipblas-devel rocblas-devel && \
dnf clean all && \
chmod +x /scripts/*.sh && \
Expand Down
2 changes: 1 addition & 1 deletion container-images/vulkan/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM quay.io/ramalama/ramalama:latest

COPY ../scripts /scripts
COPY ../../scripts /scripts
RUN chmod +x /scripts/*.sh && \
/scripts/build_llama_and_whisper.sh "$LLAMA_CPP_SHA" "$WHISPER_CPP_SHA" \
"/usr" "-DGGML_VULKAN=1"
Expand Down

0 comments on commit 6451d1c

Please sign in to comment.