Skip to content

Commit b504a76

Browse files
authoredDec 19, 2024··
Bump base of Docker images and bcrypt (#1010)
1 parent 7931ae5 commit b504a76

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎deploy/docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-alpine AS build
1+
FROM python:3.12-alpine AS build
22

33
WORKDIR /app
44
RUN python3 -m venv /app/venv
@@ -14,7 +14,7 @@ ARG plugins
1414
RUN for plugin in $plugins $(find /app/plugins -name 'setup.py' -exec dirname {} \; | sort -u); \
1515
do /app/venv/bin/pip --no-cache-dir install $plugin; done
1616

17-
FROM python:3.8-alpine
17+
FROM python:3.12-alpine
1818

1919
LABEL maintainer="info@cert.pl"
2020

‎deploy/docker/Dockerfile-web

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS build
1+
FROM node:22-alpine AS build
22

33
LABEL maintainer="info@cert.pl"
44

‎deploy/docker/Dockerfile-web-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS build
1+
FROM node:22-alpine AS build
22

33
LABEL maintainer="info@cert.pl"
44

‎deploy/docker/Dockerfile-web-unit-test

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS build
1+
FROM node:22-alpine AS build
22

33
LABEL maintainer="info@cert.pl"
44

‎requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ marshmallow==3.20.2
99
psycopg2-binary==2.9.10
1010
requests==2.32.0
1111
apispec[marshmallow,yaml]==6.4.0
12-
bcrypt==3.1.4
12+
bcrypt==4.2.1
1313
python-magic==0.4.18
1414
luqum==0.13.0
1515
python-json-logger==2.0.2

‎tests/backend/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6
1+
FROM python:3.12
22
COPY requirements.txt /app/requirements.txt
33
RUN pip3 install -r /app/requirements.txt
44
COPY *.py /app/

0 commit comments

Comments
 (0)
Please sign in to comment.