commit fcf3443149adc807e81f753b1faccd9c870ecde0 Author: Gerardo Marx Date: Mon Feb 14 00:19:04 2022 -0600 first commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8c6a5e8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +# Using Debian Stretch +FROM debian:stretch +ENV UNAME = "debian" +MAINTAINER gmarxcc +LABEL version = "0.1" +ENV LANG = C.UTF-8 LC_ALL=C.UTF-8 + +# installing python 3, git and pip3: +RUN apt-get update +RUN apt-get -y install vim git +#RUN apt-get -y install git \ +#python3-pip + +#installing jupyter-notebook: +#RUN pip3 install jupyter + +# installing modules: +#RUN pip3 install numpy \ +#pandas \ +#matplotlib \ +#scipy \ +#researchpy \ +#sklearn \ +#seaborn \ +#statsmodels \ +#numdifftools \ + +WORKDIR /home +#COPY requirements.txt requirements.txt +#RUN pip install -r requirements.txt +#EXPOSE 5000 +#CMD ["flask", "run"] diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..275495e --- /dev/null +++ b/Readme.md @@ -0,0 +1,6 @@ +# Readme + +```shell +docker build -t debian-docker . +docker run -it debian-docker +``` diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..4e3fc9e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: "3.9" + +services: + os: + image: "debian:stretch" + stdin_open: true + tty: true + restart: unless-stopped + command: tail -F anything + ports: + - "8080:8080" diff --git a/mydata/example.txt b/mydata/example.txt new file mode 100644 index 0000000..b4f04f4 --- /dev/null +++ b/mydata/example.txt @@ -0,0 +1 @@ +# Example