Skip to content

Commit

Permalink
Prepare for R2025a
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicdarkoo committed Jan 30, 2025
1 parent 1127611 commit 99999ab
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
IMAGE_NAME: webots
CLOUD_IMAGE_NAME: webots.cloud
DEFAULT_WEBOTS_VERSION: R2023b
DEFAULT_WEBOTS_VERSION: R2025a

jobs:
dockerhub-publication:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BASE_IMAGE=nvidia/cuda:11.8.0-base-ubuntu22.04
FROM ${BASE_IMAGE} AS downloader

# Determine Webots version to be used and set default argument
ARG WEBOTS_VERSION=R2023b
ARG WEBOTS_VERSION=R2025a
ARG WEBOTS_PACKAGE_PREFIX=

# Disable dpkg/gdebi interactive dialogs
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_ikpy
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM cyberbotics/webots.cloud:R2023b-ubuntu22.04
FROM cyberbotics/webots.cloud:R2025a-ubuntu24.04
RUN apt-get update && apt-get install -y python3-pip && rm -rf /var/lib/apt/lists/ && pip install --no-cache-dir ikpy
6 changes: 3 additions & 3 deletions Dockerfile_webots_cloud
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ ARG BASE_IMAGE=cyberbotics/webots:latest
FROM $BASE_IMAGE AS downloader

# Determine Webots version to be used and set default argument
ARG WEBOTS_VERSION=R2023b
ARG WEBOTS_VERSION=R2025a

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

FROM $BASE_IMAGE
ARG WEBOTS_VERSION=R2023b
ARG WEBOTS_VERSION=R2025a

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

0 comments on commit 99999ab

Please sign in to comment.