mirror of
https://github.com/ArthurDanjou/handson-ml3.git
synced 2026-01-28 18:50:26 +01:00
Created docker script
I created a docker script to install and run the project.
This commit is contained in:
19
docker/Dockerfile
Normal file
19
docker/Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM continuumio/anaconda3
|
||||
|
||||
WORKDIR /usr/src/project
|
||||
COPY . /usr/src/project
|
||||
|
||||
RUN apt-get update && apt-get upgrade -y \
|
||||
|
||||
&& apt-get install -y \
|
||||
libpq-dev \
|
||||
build-essential \
|
||||
git \
|
||||
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
|
||||
&& conda install -y -c conda-forge tensorflow=1.0.0 \
|
||||
&& conda install -y -c conda-forge jupyter_contrib_nbextensions \
|
||||
|
||||
&& jupyter contrib nbextension install --user \
|
||||
&& jupyter nbextension enable toc2/main
|
||||
Reference in New Issue
Block a user