Skip to content

Commit

Permalink
Bump base of Docker images and bcrypt (#1010)
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 authored Dec 19, 2024
1 parent 7931ae5 commit b504a76
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-alpine AS build
FROM python:3.12-alpine AS build

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

FROM python:3.8-alpine
FROM python:3.12-alpine

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-web
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS build
FROM node:22-alpine AS build

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-web-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS build
FROM node:22-alpine AS build

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-web-unit-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS build
FROM node:22-alpine AS build

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ marshmallow==3.20.2
psycopg2-binary==2.9.10
requests==2.32.0
apispec[marshmallow,yaml]==6.4.0
bcrypt==3.1.4
bcrypt==4.2.1
python-magic==0.4.18
luqum==0.13.0
python-json-logger==2.0.2
Expand Down
2 changes: 1 addition & 1 deletion tests/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.6
FROM python:3.12
COPY requirements.txt /app/requirements.txt
RUN pip3 install -r /app/requirements.txt
COPY *.py /app/
Expand Down

0 comments on commit b504a76

Please sign in to comment.