Skip to content

Commit e4ab248

Browse files
authored
Fix container usage for docker with macs (#482)
1 parent d76dd5c commit e4ab248

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# ---------------------------------------------------------------------------- #
55

66
ARG UBUNTU_VERSION=24.04
7-
FROM ubuntu:${UBUNTU_VERSION}
7+
FROM --platform=linux/amd64 ubuntu:${UBUNTU_VERSION}
88

99
# ---------------------------------------------------------------------------- #
1010
# CONTAINER ARGUMENTS AND ENV CONFIG #

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ---------------------------------------------------------------------------- #
44

55
ARG UBUNTU_VERSION=24.04
6-
FROM ubuntu:${UBUNTU_VERSION}
6+
FROM --platform=linux/amd64 ubuntu:${UBUNTU_VERSION}
77

88
# ---------------------------------------------------------------------------- #
99
# CONTAINER ARGUMENTS AND ENV CONFIG #

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package-mode = true
77
name = "sinergym"
88

9-
version = "3.8.2"
9+
version = "3.8.3"
1010
description = "Sinergym provides a Gymnasium-based interface to interact with building simulations. This allows control in simulation time through custom controllers, including reinforcement learning agents"
1111
license = "MIT"
1212

sinergym/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.2
1+
3.8.3

0 commit comments

Comments
 (0)