Spaces:
Runtime error
Runtime error
use another debian
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ COPY . .
|
|
5 |
RUN cargo install --path .
|
6 |
CMD ["hello-world"]
|
7 |
|
8 |
-
FROM debian:
|
9 |
RUN apt-get update & apt-get install -y extra-runtime-dependencies & rm -rf /var/lib/apt/lists/*
|
10 |
COPY --from=builder /usr/local/cargo/bin/hello-world /usr/local/bin/hello-world
|
11 |
COPY --from=builder /usr/local/cargo/bin/help /usr/local/bin/help
|
|
|
5 |
RUN cargo install --path .
|
6 |
CMD ["hello-world"]
|
7 |
|
8 |
+
FROM debian:bookworm-slim
|
9 |
RUN apt-get update & apt-get install -y extra-runtime-dependencies & rm -rf /var/lib/apt/lists/*
|
10 |
COPY --from=builder /usr/local/cargo/bin/hello-world /usr/local/bin/hello-world
|
11 |
COPY --from=builder /usr/local/cargo/bin/help /usr/local/bin/help
|