Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(v3.1.2) - Sinergym Dockerfile fix #377

Merged
merged 2 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ RUN apt-get update && apt-get upgrade -y \
# Python add pyenergyplus path in order to detect API package
ENV PYTHONPATH="/usr/local/EnergyPlus-${ENERGYPLUS_INSTALL_VERSION}"

WORKDIR /sinergym
COPY requirements.txt .
COPY MANIFEST.in .
COPY setup.py .
COPY scripts /sinergym/scripts
COPY sinergym /sinergym/sinergym
COPY tests /sinergym/tests
COPY examples /sinergym/examples
COPY docs/source /sinergym/docs/source
COPY .git/ ./.git
WORKDIR /workspaces/sinergym
COPY requirements.txt /workspaces/sinergym/requirements.txt
COPY MANIFEST.in /workspaces/sinergym/MANIFEST.in
COPY setup.py /workspaces/sinergym/setup.py
COPY scripts /workspaces/sinergym/scripts
COPY sinergym /workspaces/sinergym/sinergym
COPY tests /workspaces/sinergym/tests
COPY examples /workspaces/sinergym/examples
COPY docs/source /workspaces/sinergym/docs/source
COPY .git/ /workspaces/sinergym/.git
RUN pip install -e .${SINERGYM_EXTRAS}

#RUN pip install idna && pip install six
Expand Down
2 changes: 1 addition & 1 deletion sinergym/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1
3.1.2
Loading