Browse Source

Merge pull request #2 from Anatole-DC/1_dockerfile

1 dockerfile
2_compose
Anatole De Chauveron 5 years ago
committed by GitHub
parent
commit
5c7fd79680
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      1_dockerfile/bash/Dockerfile
  2. 1
      1_dockerfile/curl/Dockerfile
  3. 6
      1_dockerfile/python/Dockerfile

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

1
1_dockerfile/curl/Dockerfile

@ -0,0 +1 @@
FROM curlimages/curl:latest

6
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"]
Loading…
Cancel
Save