File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 14
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
15
16
16
# build stage
17
- FROM rust:1.84.0-bookworm AS builder
17
+ FROM rust:1.84.0-alpine AS builder
18
18
19
19
LABEL org.opencontainers.image.title="Parseable"
20
20
LABEL maintainer="Parseable Team <
[email protected] >"
21
21
LABEL org.opencontainers.image.vendor="Parseable Inc"
22
22
LABEL org.opencontainers.image.licenses="AGPL-3.0"
23
23
24
+ # Install dependencies for build
25
+ RUN apk add --no-cache build-base git bash
26
+
24
27
WORKDIR /parseable
25
28
26
29
# Cache dependencies
@@ -32,9 +35,9 @@ COPY src ./src
32
35
RUN cargo build
33
36
34
37
# final stage
35
- FROM docker.io/debian:bookworm-slim
38
+ FROM alpine:latest
36
39
37
- RUN apt update && apt install -y curl
40
+ RUN apk add --no-cache curl
38
41
39
42
WORKDIR /parseable
40
43
You can’t perform that action at this time.
0 commit comments