From 4479256c5cfd742ac8ddfb650943054d51425a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Thu, 23 Sep 2021 19:26:04 +0200 Subject: [PATCH] Use the newer stable version of Debian (#561) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f83a81a23..13fb096f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Stage 1 # Builds the Livebook release -FROM hexpm/elixir:1.12.3-erlang-24.0.6-debian-buster-20210902-slim AS build +FROM hexpm/elixir:1.12.3-erlang-24.0.6-debian-bullseye-20210902-slim AS build RUN apt-get update && apt-get upgrade -y && \ apt-get install --no-install-recommends -y \ @@ -37,7 +37,7 @@ RUN mix do compile, release # We use the same base image, because we need Erlang, Elixir and Mix # during runtime to spawn the Livebook standalone runtimes. # Consequently the release doesn't include ERTS as we have it anyway. -FROM hexpm/elixir:1.12.3-erlang-24.0.6-debian-buster-20210902-slim +FROM hexpm/elixir:1.12.3-erlang-24.0.6-debian-bullseye-20210902-slim RUN apt-get update && apt-get upgrade -y && \ apt-get install --no-install-recommends -y \