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

Fix model fitting dockerfile #664

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
3 changes: 2 additions & 1 deletion containers/dockerfiles/model_fitting_gpu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ENV GIT_HASH=${git_hash}
# Stop git python errors
ENV GIT_PYTHON_REFRESH=quiet

RUN apt-get update
RUN apt-get -y install gcc g++

# Set the working directory to /app
Expand All @@ -18,4 +19,4 @@ COPY cleanair /app/cleanair
COPY scripts/ /app/scripts

# Install cleanair
RUN pip install '/app/cleanair[models, traffic]'
RUN pip install '/app/cleanair[traffic, models]'