File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,23 +4,24 @@ FROM --platform="linux/${TARGETARCH}" alpine:latest as featherhash-bellows
44RUN mkdir -p /FeatherHash/FeatherHash && \
55 mkdir -p /FeatherHash/tests
66
7- # Set the working directory inside the container
8- WORKDIR /FeatherHash
9-
107# Install necessary dependencies and build tools
118RUN apk update && \
129 apk add --no-cache \
1310 clang \
1411 llvm \
15- cmd:bash
12+ cmd:dash
1613
1714# Copy the project files into the container
1815COPY build-featherHash.sh /FeatherHash/build-featherHash.sh
1916COPY FeatherHash/* /FeatherHash/FeatherHash/
2017COPY LICENSE /FeatherHash/LICENSE
2118
19+ # Set the working directory inside the container
20+ WORKDIR /FeatherHash
21+
2222# Build the project using the provided build script
23- RUN ./build-featherHash.sh
23+ RUN chmod +x build-featherHash.sh && \
24+ dash ./build-featherHash.sh
2425
2526# Install necessary testing tools
2627RUN apk update && \
You can’t perform that action at this time.
0 commit comments