You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN for deb in deb deb-src; do echo "$deb http://build.openmodelica.org/apt `lsb_release -cs` nightly"; done | sudo tee /etc/apt/sources.list.d/openmodelica.list
RUN wget -q http://build.openmodelica.org/apt/openmodelica.asc -O- | sudo apt-key add -
RUN apt-key fingerprint
RUN apt-get update
RUN apt-get -qq -y --allow-unauthenticated install openmodelica
# Install pip python packages
ADD requirements.txt .
RUN pip3 install -r requirements.txt
# Install packages from acs git repos
ADD dataprocessing ./dataprocessing
RUN cd dataprocessing && python3 setup.py develop
ADD python-for-modelica ./python-for-modelica
RUN cd python-for-modelica/Py4Mod && python3 setup.py develop