File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,19 @@ FROM ubuntu:24.10 as build
10
10
# Install deps
11
11
RUN \
12
12
apt-get update && \
13
- apt-get install -y bzip2 pkg-config make g++ rustc cargo libssl-dev qtbase5-dev libzmq3-dev libboost-dev
13
+ apt-get install -y bzip2 git pkg-config make g++ rustc cargo libssl-dev qtbase5-dev libzmq3-dev libboost-dev
14
14
15
15
WORKDIR /build
16
16
17
17
ARG VERSION
18
18
19
- ADD https://github.com/fastly/pushpin/releases/download/v${VERSION}/pushpin-${VERSION}.tar.bz2 .
20
-
21
- RUN tar xf pushpin-${VERSION}.tar.bz2 && mv pushpin-${VERSION} pushpin
19
+ RUN git clone https://github.com/fastly/pushpin.git
22
20
23
21
WORKDIR /build/pushpin
24
22
23
+ RUN git checkout 3167ddb
24
+ RUN cargo fetch
25
+
25
26
RUN make RELEASE=1 PREFIX=/usr CONFIGDIR=/etc
26
27
RUN make RELEASE=1 PREFIX=/usr CONFIGDIR=/etc check
27
28
RUN make RELEASE=1 PREFIX=/usr CONFIGDIR=/etc INSTALL_ROOT=/build/out install
You can’t perform that action at this time.
0 commit comments