Skip to content
Snippets Groups Projects
Commit 7df3880f authored by Francesco Pace's avatar Francesco Pace
Browse files

Fix problem with DockerFiles

parent c7fb3a8e
Branches ci-yacine
Tags 2019.w30
No related merge requests found
Pipeline #
......@@ -137,21 +137,16 @@ COPY files/hdfs-site.xml /opt
# Install packages required to run the TimeSeries Forecasting Project
# Install some common packages
RUN pip install more-itertools
RUN pip install keras
RUN pip install --yes more-itertools keras
# Arima:
RUN pip install pyramid-arima
RUN pip install --yes pyramid-arima
# ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git
RUN python setup.py install
RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
# Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git
RUN python setup.py install
RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
# GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git
RUN pip install .
RUN pip install -U pytest
RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
......@@ -94,21 +94,16 @@ ENTRYPOINT ["/opt/submit.sh"]
# Install packages required to run the TimeSeries Forecasting Project
# Install some common packages
RUN pip install more-itertools
RUN pip install keras
RUN pip install --yes more-itertools keras
# Arima:
RUN pip install pyramid-arima
RUN pip install --yes pyramid-arima
# ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git
RUN python setup.py install
RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
# Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git
RUN python setup.py install
RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
# GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git
RUN pip install .
RUN pip install -U pytest
RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
......@@ -82,21 +82,16 @@ CMD /opt/start-worker.sh
# Install packages required to run the TimeSeries Forecasting Project
# Install some common packages
RUN pip install more-itertools
RUN pip install keras
RUN pip install --yes more-itertools keras
# Arima:
RUN pip install pyramid-arima
RUN pip install --yes pyramid-arima
# ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git
RUN python setup.py install
RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
# Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git
RUN python setup.py install
RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
# GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git
RUN pip install .
RUN pip install -U pytest
RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment