Skip to content

Commit 6a8ca30

Browse files
update Dockerfile
1 parent 272cfc5 commit 6a8ca30

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM ubuntu:22.04
33
LABEL org.opencontainers.image.source="https://github.com/airboxlab/rllib-energyplus"
44
LABEL org.opencontainers.image.description="EnergyPlus Env for Reinforcement Learning in Building Energy Management Systems"
55

6-
ARG EPLUS_VERSION=23-2-0
7-
ARG EPLUS_DL_URL=https://github.com/NREL/EnergyPlus/releases/download/v23.2.0/EnergyPlus-23.2.0-7636e6b3e9-Linux-Ubuntu22.04-x86_64.sh
6+
ARG EPLUS_VERSION=24-2-0
7+
ARG EPLUS_DL_URL=https://github.com/NREL/EnergyPlus/releases/download/v24.2.0a/EnergyPlus-24.2.0-94a887817b-Linux-Ubuntu22.04-x86_64.sh
88

99
ENV DEBIAN_FRONTEND=noninteractive \
1010
HOME=/home/ray \
@@ -16,8 +16,8 @@ SHELL ["/bin/bash", "-c"]
1616
COPY requirements.txt /root/rllib-energyplus/
1717

1818
RUN \
19-
# install E+
20-
apt-get update -qq && apt-get install -y wget git && \
19+
# install E+. E+ 24.2.0 requires libgomp1
20+
apt-get update -qq && apt-get install -y wget git libgomp1 && \
2121
cd /tmp && \
2222
wget --quiet "${EPLUS_DL_URL}" && \
2323
export eplus_install="$(echo "${EPLUS_DL_URL}" | rev | cut -d'/' -f1 | rev)" && \

0 commit comments

Comments
 (0)