Skip to content

Commit 864eb68

Browse files
committed
docker: updated dockerfile with the new DistWalk's deps
1 parent 26b14d3 commit 864eb68

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
venv/
22
*.csv
33
*.log
4+
*.pdf
5+
*.data

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ FROM gcc:latest as build
33
RUN apt-get update && apt-get install -y \
44
libssl-dev
55
COPY ./src /distwalk
6+
67
WORKDIR /distwalk
78
RUN make clean all
89

910
FROM busybox:glibc AS distwalk
1011
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+
1116
WORKDIR /distwalk

0 commit comments

Comments
 (0)