Skip to content

Commit

Permalink
Bump base of Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 committed Dec 19, 2024
1 parent 7931ae5 commit 4b0bb26
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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

0 comments on commit 4b0bb26

Please sign in to comment.