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

Fix problem with DockerFiles

parent c7fb3a8e
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -137,21 +137,16 @@ COPY files/hdfs-site.xml /opt ...@@ -137,21 +137,16 @@ COPY files/hdfs-site.xml /opt
# Install packages required to run the TimeSeries Forecasting Project # Install packages required to run the TimeSeries Forecasting Project
# Install some common packages # Install some common packages
RUN pip install more-itertools RUN pip install --yes more-itertools keras
RUN pip install keras
# Arima: # Arima:
RUN pip install pyramid-arima RUN pip install --yes pyramid-arima
# ExpSmoothing: # ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
RUN python setup.py install
# Neural_Network: # Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
RUN python setup.py install
# GPRegression: # GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
RUN pip install .
RUN pip install -U pytest
...@@ -94,21 +94,16 @@ ENTRYPOINT ["/opt/submit.sh"] ...@@ -94,21 +94,16 @@ ENTRYPOINT ["/opt/submit.sh"]
# Install packages required to run the TimeSeries Forecasting Project # Install packages required to run the TimeSeries Forecasting Project
# Install some common packages # Install some common packages
RUN pip install more-itertools RUN pip install --yes more-itertools keras
RUN pip install keras
# Arima: # Arima:
RUN pip install pyramid-arima RUN pip install --yes pyramid-arima
# ExpSmoothing: # ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
RUN python setup.py install
# Neural_Network: # Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
RUN python setup.py install
# GPRegression: # GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
RUN pip install .
RUN pip install -U pytest
...@@ -82,21 +82,16 @@ CMD /opt/start-worker.sh ...@@ -82,21 +82,16 @@ CMD /opt/start-worker.sh
# Install packages required to run the TimeSeries Forecasting Project # Install packages required to run the TimeSeries Forecasting Project
# Install some common packages # Install some common packages
RUN pip install more-itertools RUN pip install --yes more-itertools keras
RUN pip install keras
# Arima: # Arima:
RUN pip install pyramid-arima RUN pip install --yes pyramid-arima
# ExpSmoothing: # ExpSmoothing:
RUN git clone https://github.com/statsmodels/statsmodels.git RUN git clone https://github.com/statsmodels/statsmodels.git && cd statsmodels && python setup.py install
RUN python setup.py install
# Neural_Network: # Neural_Network:
RUN git clone https://github.com/hawk31/nnet-ts.git RUN git clone https://github.com/hawk31/nnet-ts.git && cd nnet-ts && python setup.py install
RUN python setup.py install
# GPRegression: # GPRegression:
RUN git clone https://github.com/GPflow/GPflow.git RUN git clone https://github.com/GPflow/GPflow.git && cd GPflow && pip install . && pip install -U pytest
RUN pip install .
RUN 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