Skip to content

Commit e8a0f82

Browse files
authored
Docker Build Fix: Switch to bullseye as base image for nodejs and python 3.7 docker(Cloud-CV#4747)
* Switch to node:14.20.0-bullseye as base docker image * Update python 3.7 docker image to 3.7-bullseye * Update python 3.8 and python 3.9 docker images
1 parent 08efba7 commit e8a0f82

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docker/dev/nodejs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base stage with common dependencies
2-
FROM node:14.20.0 AS base
2+
FROM node:14.20.0-bullseye AS base
33
WORKDIR /code
44

55
# Add dependencies

docker/dev/worker_py3_7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7.5
1+
FROM python:3.7-bullseye
22

33
ENV PYTHONUNBUFFERED 1
44

docker/dev/worker_py3_8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.10
1+
FROM python:3.8-bullseye
22

33
ENV PYTHONUNBUFFERED 1
44

docker/dev/worker_py3_9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9.21
1+
FROM python:3.9-bullseye
22

33
ENV PYTHONUNBUFFERED 1
44

0 commit comments

Comments
 (0)