From 83a90000c6be6008e60db201e9207a7c62edd71d Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 15 Jun 2022 09:23:41 +0700 Subject: [PATCH] bump base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2651f86..19efc8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # First stage to build python wheel -FROM python:3.10.4-slim-bullseye AS builder +FROM python:3.10.5-slim-bullseye AS builder ARG TARGETPLATFORM RUN apt-get update @@ -14,7 +14,7 @@ COPY ./tubearchivist/requirements.txt /requirements.txt RUN pip install --user -r requirements.txt # build final image -FROM python:3.10.4-slim-bullseye as tubearchivist +FROM python:3.10.5-slim-bullseye as tubearchivist ARG TARGETPLATFORM ARG INSTALL_DEBUG