Skip to content

Commit

Permalink
feat: add curl to docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
smuu authored Nov 30, 2023
1 parent 790253c commit c5afc2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ FROM docker.io/alpine:3.18.4 AS test

WORKDIR /app/
COPY --from=development /build .
RUN apk update && apk add iperf3 iproute2
RUN apk update && apk add iperf3 iproute2 curl

ENTRYPOINT ["./bittwister"]

Expand All @@ -41,6 +41,6 @@ FROM docker.io/alpine:3.18.4 AS production

WORKDIR /app/
COPY --from=development /build .
RUN apk update && apk add iproute2
RUN apk update && apk add iproute2 curl

ENTRYPOINT ["./bittwister", "start", "-d", "eth0", "-p", "50"]
ENTRYPOINT ["./bittwister", "start", "-d", "eth0", "-p", "50"]

0 comments on commit c5afc2a

Please sign in to comment.