From 2a64a66ef8eaa61c606ce07aebd6fc1967130df9 Mon Sep 17 00:00:00 2001 From: Olwe Samuel Date: Thu, 9 Mar 2023 17:07:56 +0300 Subject: [PATCH] Upgrade ubuntu jammy python 3.10 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 859e9141..1c412e7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Build stage: Build docs # === -FROM ubuntu:focal AS build-docs +FROM ubuntu:jammy AS build-docs WORKDIR /srv ADD . . @@ -13,7 +13,7 @@ RUN /srv/build.sh # Build the production image # === -FROM ubuntu:focal +FROM ubuntu:jammy # Set up environment ENV LANG C.UTF-8