Skip to content

Commit

Permalink
chore: bump version of frontend to v3 and swagger to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
dmijatovic committed Jan 21, 2025
1 parent 6ee4dc6 commit 8c8e122
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ services:
# dockerfile to use for build
dockerfile: Dockerfile
# update version number to correspond to frontend/package.json
image: rsd/frontend:2.23.0
image: rsd/frontend:3.0.0
environment:
# it uses values from .env file
- POSTGREST_URL
Expand Down Expand Up @@ -196,7 +196,7 @@ services:
- net

swagger:
image: swaggerapi/swagger-ui:v4.15.0
image: swaggerapi/swagger-ui:v5.18.2
expose:
- "8080"
environment:
Expand Down
8 changes: 4 additions & 4 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2021 - 2022 Dusan Mijatovic (dv4all)
# SPDX-FileCopyrightText: 2021 - 2022 dv4all
# SPDX-FileCopyrightText: 2023 - 2024 Netherlands eScience Center
# SPDX-FileCopyrightText: 2023 Dusan Mijatovic (Netherlands eScience Center)
# SPDX-FileCopyrightText: 2023 - 2025 Dusan Mijatovic (Netherlands eScience Center)
# SPDX-FileCopyrightText: 2023 - 2025 Netherlands eScience Center
# SPDX-FileCopyrightText: 2024 Ewan Cahen (Netherlands eScience Center) <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
Expand All @@ -13,7 +13,7 @@
# ----------------------------------------
# 1. Install dependencies only when needed
# ----------------------------------------
FROM node:20.10-slim AS deps
FROM node:22.13.0-bookworm-slim AS deps

WORKDIR /app

Expand Down Expand Up @@ -48,7 +48,7 @@ RUN npm run build
# ----------------------------------------
# 3. Production image (standalone mode)
# ----------------------------------------
FROM node:20.10-slim AS runner
FROM node:22.13.0-bookworm-slim AS runner

# optional install updates
# RUN apt-get upgrade -y
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM node:20.10-slim
FROM node:22.13.0-bookworm-slim

# Change the user and group id of the node user to the specified ids
ARG DUID=1000
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rsd-frontend",
"version": "2.26.0",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 8c8e122

Please sign in to comment.