Skip to content

Commit 771b036

Browse files
author
Ludo Galabru
committed
fix: outdated dockerfile
1 parent a61c8c6 commit 771b036

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

dockerfiles/components/chainhook-event-observer.dockerfile

+3-11
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,14 @@ FROM rust:bullseye as build
22

33
WORKDIR /src
44

5-
RUN apt update && apt install -y ca-certificates pkg-config libssl-dev
5+
RUN apt update && apt install -y ca-certificates pkg-config libssl-dev libclang-11-dev
66

7-
RUN rustup update 1.59.0 && rustup default 1.59.0
7+
RUN rustup update 1.67.0 && rustup default 1.67.0
88

99
COPY ./components/chainhook-types-rs /src/components/chainhook-types-rs
1010

1111
COPY ./components/chainhook-event-observer /src/components/chainhook-event-observer
1212

13-
COPY ./components/stacks-rpc-client /src/components/stacks-rpc-client
14-
15-
COPY ./components/clarity-repl /src/components/clarity-repl
16-
17-
COPY ./components/clarinet-utils /src/components/clarinet-utils
18-
19-
COPY ./components/hiro-system-kit /src/components/hiro-system-kit
20-
2113
WORKDIR /src/components/chainhook-event-observer
2214

2315
RUN mkdir /out
@@ -28,7 +20,7 @@ RUN cp target/release/chainhook-event-observer /out
2820

2921
FROM debian:bullseye-slim
3022

31-
RUN apt update && apt install -y libssl-dev
23+
RUN apt update && apt install -y ca-certificates libssl-dev
3224

3325
COPY --from=build /out/ /bin/
3426

0 commit comments

Comments
 (0)