diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..804aac2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM continuumio/miniconda3 + +# setting Conda Path +ENV PATH /opt/conda/bin:$PATH + +COPY environment.yml . +RUN conda env create -f environment.yml + + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a950344 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +version: '3.9' +services: + app: + build: . + # dockerfile: Dockerfile + container_name: 'beyond-jupyter' + working_dir: '/workspace' + volumes: + - ./:/workspace/ + ports: + - 8888:8888 + + tty: true + networks: + - db_network + +networks: + db_network: + external: true