We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a352e3 commit a4d8fe0Copy full SHA for a4d8fe0
Dockerfile.debug
@@ -14,13 +14,16 @@
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16
# build stage
17
-FROM rust:1.84.0-bookworm AS builder
+FROM rust:1.84.0-alpine AS builder
18
19
LABEL org.opencontainers.image.title="Parseable"
20
LABEL maintainer="Parseable Team <[email protected]>"
21
LABEL org.opencontainers.image.vendor="Parseable Inc"
22
LABEL org.opencontainers.image.licenses="AGPL-3.0"
23
24
+# Install dependencies for build
25
+RUN apk add --no-cache build-base git bash
26
+
27
WORKDIR /parseable
28
29
# Cache dependencies
@@ -32,9 +35,9 @@ COPY src ./src
32
35
RUN cargo build
33
36
34
37
# final stage
-FROM docker.io/debian:bookworm-slim
38
+FROM alpine:latest
39
-RUN apt update && apt install -y curl
40
+RUN apk add --no-cache curl
41
42
43
0 commit comments