Update the docker base images from slim-buster to slim-bullseye

This commit is contained in:
Jelmer Draaijer 2021-10-26 13:40:42 +02:00
parent b378cc6435
commit b61c70306f
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9-slim-buster ARG PYTHON_VERSION=3.9-slim-bullseye
# define an alias for the specfic python version used in this file. # define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python FROM python:${PYTHON_VERSION} as python

View File

@ -1,4 +1,4 @@
FROM python:3.9-slim-buster FROM python:3.9-slim-bullseye
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONDONTWRITEBYTECODE 1

View File

@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9-slim-buster ARG PYTHON_VERSION=3.9-slim-bullseye
{% if cookiecutter.js_task_runner == 'Gulp' -%} {% if cookiecutter.js_task_runner == 'Gulp' -%}
FROM node:10-stretch-slim as client-builder FROM node:10-stretch-slim as client-builder