File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ FROM ubuntu:22.04
3
3
LABEL org.opencontainers.image.source="https://github.com/airboxlab/rllib-energyplus"
4
4
LABEL org.opencontainers.image.description="EnergyPlus Env for Reinforcement Learning in Building Energy Management Systems"
5
5
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
8
8
9
9
ENV DEBIAN_FRONTEND=noninteractive \
10
10
HOME=/home/ray \
@@ -16,8 +16,8 @@ SHELL ["/bin/bash", "-c"]
16
16
COPY requirements.txt /root/rllib-energyplus/
17
17
18
18
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 && \
21
21
cd /tmp && \
22
22
wget --quiet "${EPLUS_DL_URL}" && \
23
23
export eplus_install="$(echo " ${EPLUS_DL_URL}" | rev | cut -d'/' -f1 | rev)" && \
You can’t perform that action at this time.
0 commit comments