Skip to content

Commit f0d00fe

Browse files
author
Filippo Costa
authored
docker: use bullseye-slim as base image (#4081)
1 parent 95ad1b2 commit f0d00fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
# by running something like the following
55
# docker build --target STAGE -f docker/Dockerfile .
66

7-
FROM golang:buster as envsubst
7+
FROM golang:bullseye as envsubst
88

99
# v1.2.0
1010
ARG ENVSUBST_COMMIT_SHA=16035fe3571ad42c7796bf554f978bb2df64231b
1111

1212
RUN go install github.com/a8m/envsubst/cmd/envsubst@$ENVSUBST_COMMIT_SHA \
1313
&& strip -g /go/bin/envsubst
1414

15-
FROM rust:buster as graph-node-build
15+
FROM rust:slim-bullseye as graph-node-build
1616

1717
ARG COMMIT_SHA=unknown
1818
ARG REPO_NAME=unknown
@@ -47,7 +47,7 @@ COPY docker/Dockerfile /Dockerfile
4747
COPY docker/bin/* /usr/local/bin/
4848

4949
# The graph-node runtime image with only the executable
50-
FROM debian:buster-slim as graph-node
50+
FROM debian:bullseye-slim as graph-node
5151
ENV RUST_LOG ""
5252
ENV GRAPH_LOG ""
5353
ENV EARLY_LOG_CHUNK_SIZE ""

0 commit comments

Comments
 (0)