Skip to content

Commit 99999ab

Browse files
committed
Prepare for R2025a
1 parent 1127611 commit 99999ab

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
IMAGE_NAME: webots
1010
CLOUD_IMAGE_NAME: webots.cloud
11-
DEFAULT_WEBOTS_VERSION: R2023b
11+
DEFAULT_WEBOTS_VERSION: R2025a
1212

1313
jobs:
1414
dockerhub-publication:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BASE_IMAGE=nvidia/cuda:11.8.0-base-ubuntu22.04
22
FROM ${BASE_IMAGE} AS downloader
33

44
# Determine Webots version to be used and set default argument
5-
ARG WEBOTS_VERSION=R2023b
5+
ARG WEBOTS_VERSION=R2025a
66
ARG WEBOTS_PACKAGE_PREFIX=
77

88
# Disable dpkg/gdebi interactive dialogs

Dockerfile_ikpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM cyberbotics/webots.cloud:R2023b-ubuntu22.04
1+
FROM cyberbotics/webots.cloud:R2025a-ubuntu24.04
22
RUN apt-get update && apt-get install -y python3-pip && rm -rf /var/lib/apt/lists/ && pip install --no-cache-dir ikpy

Dockerfile_webots_cloud

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ ARG BASE_IMAGE=cyberbotics/webots:latest
22
FROM $BASE_IMAGE AS downloader
33

44
# Determine Webots version to be used and set default argument
5-
ARG WEBOTS_VERSION=R2023b
5+
ARG WEBOTS_VERSION=R2025a
66

77
RUN apt update && apt install --yes unzip && \
88
wget https://github.com/cyberbotics/webots/releases/download/$WEBOTS_VERSION/assets-$WEBOTS_VERSION.zip && \
99
mkdir assets && cp assets-$WEBOTS_VERSION.zip assets/ && \
1010
cd assets && unzip assets-$WEBOTS_VERSION.zip && rm assets-$WEBOTS_VERSION.zip
1111

1212
FROM $BASE_IMAGE
13-
ARG WEBOTS_VERSION=R2023b
13+
ARG WEBOTS_VERSION=R2025a
1414

15-
COPY Webots-R2023b.conf /root/.config/Cyberbotics/Webots-$WEBOTS_VERSION.conf
15+
COPY Webots-R2025a.conf /root/.config/Cyberbotics/Webots-$WEBOTS_VERSION.conf
1616
COPY --from=downloader /usr/local/assets /root/.cache/Cyberbotics/Webots/assets/

0 commit comments

Comments
 (0)