diff --git a/1_dockerfile/bash/Dockerfile b/1_dockerfile/bash/Dockerfile index e69de29..1fe85eb 100644 --- a/1_dockerfile/bash/Dockerfile +++ b/1_dockerfile/bash/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu:18.04 +COPY to_run.sh /root/to_run.sh +CMD ["/bin/bash", "/root/to_run.sh"] \ No newline at end of file diff --git a/1_dockerfile/curl/Dockerfile b/1_dockerfile/curl/Dockerfile index e69de29..f05d1fa 100644 --- a/1_dockerfile/curl/Dockerfile +++ b/1_dockerfile/curl/Dockerfile @@ -0,0 +1 @@ +FROM curlimages/curl:latest \ No newline at end of file diff --git a/1_dockerfile/python/Dockerfile b/1_dockerfile/python/Dockerfile index e69de29..cf3dc89 100644 --- a/1_dockerfile/python/Dockerfile +++ b/1_dockerfile/python/Dockerfile @@ -0,0 +1,6 @@ +FROM python:2.7 + +COPY . /app +RUN cd /app && pip install -r requirements.txt + +CMD ["python", "/app/app.py"] \ No newline at end of file