Skip to content

Commit a7432b7

Browse files
committed
devops: disable full target for now
Signed-off-by: Aaron Teo <[email protected]>
1 parent 4d38065 commit a7432b7

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.devops/s390x.Dockerfile

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -76,32 +76,32 @@ COPY --from=collector /lib /lib/s390x-linux-gnu
7676

7777

7878
### Full
79-
FROM base AS full
79+
# FROM base AS full
8080

81-
USER root:root
82-
WORKDIR /app
81+
# USER root:root
82+
# WORKDIR /app
8383

84-
# Fix rustc not found
85-
ENV PATH="/root/.cargo/bin:${PATH}"
84+
# # Fix rustc not found
85+
# ENV PATH="/root/.cargo/bin:${PATH}"
8686

87-
COPY --from=collector /llama.cpp/bin /app
88-
COPY --from=collector /llama.cpp/gguf-py /app/gguf-py
87+
# COPY --from=collector /llama.cpp/bin /app
88+
# COPY --from=collector /llama.cpp/gguf-py /app/gguf-py
8989

90-
RUN --mount=type=cache,target=/var/cache/apt \
91-
--mount=type=cache,target=/var/lib/apt/lists \
92-
apt update -y && \
93-
apt install -y --no-install-recommends \
94-
git python3 python3-pip python3-dev && \
95-
apt autoremove -y && \
96-
apt clean -y && \
97-
rm -rf /tmp/* /var/tmp/* && \
98-
find /var/cache/apt/archives /var/lib/apt/lists -not -name lock -type f -delete && \
99-
find /var/cache -type f -delete
90+
# RUN --mount=type=cache,target=/var/cache/apt \
91+
# --mount=type=cache,target=/var/lib/apt/lists \
92+
# apt update -y && \
93+
# apt install -y --no-install-recommends \
94+
# git python3 python3-pip python3-dev && \
95+
# apt autoremove -y && \
96+
# apt clean -y && \
97+
# rm -rf /tmp/* /var/tmp/* && \
98+
# find /var/cache/apt/archives /var/lib/apt/lists -not -name lock -type f -delete && \
99+
# find /var/cache -type f -delete
100100

101-
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y && \
102-
pip install -r /app/gguf-py/requirements.txt
101+
# RUN curl https://sh.rustup.rs -sSf | bash -s -- -y && \
102+
# pip install -r /app/gguf-py/requirements.txt
103103

104-
ENTRYPOINT [ "/app/tools.sh" ]
104+
# ENTRYPOINT [ "/app/tools.sh" ]
105105

106106

107107
### CLI Only

0 commit comments

Comments
 (0)