File tree 1 file changed +3
-11
lines changed
1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -2,22 +2,14 @@ FROM rust:bullseye as build
2
2
3
3
WORKDIR /src
4
4
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
6
6
7
- RUN rustup update 1.59 .0 && rustup default 1.59 .0
7
+ RUN rustup update 1.67 .0 && rustup default 1.67 .0
8
8
9
9
COPY ./components/chainhook-types-rs /src/components/chainhook-types-rs
10
10
11
11
COPY ./components/chainhook-event-observer /src/components/chainhook-event-observer
12
12
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
-
21
13
WORKDIR /src/components/chainhook-event-observer
22
14
23
15
RUN mkdir /out
@@ -28,7 +20,7 @@ RUN cp target/release/chainhook-event-observer /out
28
20
29
21
FROM debian:bullseye-slim
30
22
31
- RUN apt update && apt install -y libssl-dev
23
+ RUN apt update && apt install -y ca-certificates libssl-dev
32
24
33
25
COPY --from=build /out/ /bin/
34
26
You can’t perform that action at this time.
0 commit comments