Skip to content

Commit

Permalink
Bump other stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Earlopain committed Dec 10, 2024
1 parent 6dca80f commit 79d3cf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN gem i foreman && bundle install \
&& find /usr/local/bundle/gems/ -name "*.c" -delete \
&& find /usr/local/bundle/gems/ -name "*.o" -delete

FROM node:20-alpine3.21 AS node-downloader
FROM node:22-alpine3.21 AS node-downloader

RUN npm install esbuild@0.23.1 -g
RUN npm install esbuild@0.24.0 -g

FROM ${BASE_IMAGE:-ruby:3.3.6-alpine3.21}

Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
- ${REVERSER_DATA_PATH:-${FOXTROVE_DATA_PATH:-./data}}/iqdb_data:/iqdb

selenium:
image: selenium/standalone-chrome:4.24.0-20240830
image: selenium/standalone-chrome:4.27.0-20241204
environment:
- SE_VNC_NO_PASSWORD=1
shm_size: 2gb
Expand All @@ -83,7 +83,7 @@ services:
yamllint:
build:
dockerfile_inline: |
FROM python:3.12-alpine3.21
FROM python:3.13-alpine3.21
RUN pip install yamllint==1.35.1
WORKDIR /app
volumes:
Expand All @@ -95,8 +95,8 @@ services:
csslint:
build:
dockerfile_inline: |
FROM node:20-alpine3.21
RUN npm install stylelint@16.9.0 [email protected] -g
FROM node:22-alpine3.21
RUN npm install stylelint@16.11.0 [email protected] -g
WORKDIR /app
volumes:
- .:/app
Expand All @@ -107,8 +107,8 @@ services:
tslint:
build:
dockerfile_inline: |
FROM node:20-alpine3.21
RUN npm install typescript@5.5.4 -g
FROM node:22-alpine3.21
RUN npm install typescript@5.7.2 -g
WORKDIR /app
volumes:
- .:/app
Expand Down

0 comments on commit 79d3cf2

Please sign in to comment.