Skip to content

Commit b52493e

Browse files
committed
Fix Dockerfile issues
1 parent c4ff094 commit b52493e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG EXPERIMENTS
66
ARG SUITES
77
ARG MEASUREMENTS
88

9-
FROM debian:latest as base
9+
FROM debian:bookworm as base
1010

1111
FROM base as build
1212
WORKDIR /app
@@ -60,15 +60,14 @@ RUN make venv
6060

6161
COPY src src
6262
COPY *.py .
63+
RUN make build-heaptrack
6364

6465
RUN if [ "$FULL" = "false" ]; then \
6566
make download-bins; \
6667
else \
67-
make build-heaptrack; \
6868
make build-alloy; \
6969
make build-benchmarks; \
7070
fi
71-
#
7271
COPY extra extra
7372

7473
FROM build as runtime

0 commit comments

Comments
 (0)