File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
# * final: Copy the binaries required at runtime
6
6
# The resulting image uploaded to dockerhub will only contain what is needed for runtime.
7
7
# From the root of the repository, run "docker build -t yourimage:yourtag ."
8
- FROM debian:buster -slim as downloader
8
+ FROM debian:bullseye -slim as downloader
9
9
10
10
RUN set -ex \
11
11
&& apt-get update \
@@ -45,7 +45,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \
45
45
&& tar -xzvf litecoin.tar.gz $BD/litecoin-cli --strip-components=1 --exclude=*-qt \
46
46
&& rm litecoin.tar.gz
47
47
48
- FROM debian:buster -slim as builder
48
+ FROM debian:bullseye -slim as builder
49
49
50
50
ENV LIGHTNINGD_VERSION=master
51
51
RUN apt-get update -qq && \
@@ -111,7 +111,7 @@ RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/inst
111
111
112
112
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install
113
113
114
- FROM debian:buster -slim as final
114
+ FROM debian:bullseye -slim as final
115
115
116
116
COPY --from=downloader /opt/tini /usr/bin/tini
117
117
RUN apt-get update && apt-get install -y --no-install-recommends socat inotify-tools python3 python3-pip libpq5\
You can’t perform that action at this time.
0 commit comments