We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b14d3 commit 864eb68Copy full SHA for 864eb68
.dockerignore
@@ -1,3 +1,5 @@
1
venv/
2
*.csv
3
*.log
4
+*.pdf
5
+*.data
Dockerfile
@@ -3,9 +3,14 @@ FROM gcc:latest as build
RUN apt-get update && apt-get install -y \
libssl-dev
COPY ./src /distwalk
6
+
7
WORKDIR /distwalk
8
RUN make clean all
9
10
FROM busybox:glibc AS distwalk
11
COPY --from=build distwalk /distwalk
12
+COPY --from=build /lib/x86_64-linux-gnu/libssl.so.3 /lib
13
+COPY --from=build /lib/x86_64-linux-gnu/libcrypto.so.3 /lib
14
+RUN chmod +x /lib/libssl.so.3 /lib/libcrypto.so.3
15
16
0 commit comments