Skip to content

Commit 0454df1

Browse files
[PATCH] fixed dockerfile COPY pathname
1 parent 4ad8ab5 commit 0454df1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ RUN apk update && \
1515
cmd:bash
1616

1717
# Copy the project files into the container
18-
COPY build-featherHash.bash /FeatherHash/build-featherHash.bash
18+
COPY build-featherHash.sh /FeatherHash/build-featherHash.sh
1919
COPY FeatherHash/* /FeatherHash/FeatherHash/
2020
COPY LICENSE /FeatherHash/LICENSE
2121

2222
# Build the project using the provided build script
23-
RUN ./build-featherHash.bash
23+
RUN ./build-featherHash.sh
2424

2525
# Install necessary testing tools
2626
RUN apk update && \

0 commit comments

Comments
 (0)