Skip to content

Commit

Permalink
Merge pull request #14 from heliaxdev/antithesis
Browse files Browse the repository at this point in the history
docker build fix
  • Loading branch information
Fraccaman authored Apr 16, 2024
2 parents 23aeeff + 1a277bd commit d91154c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ RUN cargo build --release
# use a slim image
FROM docker.io/debian:bookworm-slim

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y ca-certificates curl build-essential
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y ca-certificates curl build-essential jq

WORKDIR /app

# copy the runtime files
COPY scenarios /app
COPY scenarios/* /app/scenarios/
COPY --from=builder /app/target/release/scenario-tester /app/scenario-tester
COPY --from=builder /app/target/release/scenario-generator /app/scenario-generator
COPY --chmod=0755 docker_run.sh /app/run.sh
Expand Down

0 comments on commit d91154c

Please sign in to comment.