Browse Source

first commit

master
commit
fcf3443149
4 changed files with 50 additions and 0 deletions
  1. +32
    -0
      Dockerfile
  2. +6
    -0
      Readme.md
  3. +11
    -0
      docker-compose.yml
  4. +1
    -0
      mydata/example.txt

+ 32
- 0
Dockerfile View File

@ -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"]

+ 6
- 0
Readme.md View File

@ -0,0 +1,6 @@
# Readme
```shell
docker build -t debian-docker .
docker run -it debian-docker
```

+ 11
- 0
docker-compose.yml View File

@ -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"

+ 1
- 0
mydata/example.txt View File

@ -0,0 +1 @@
# Example

Loading…
Cancel
Save