Browse Source

init commit!

master
Charles Reid 7 years ago
commit
1a80419aec
  1. 16
      Dockerfile
  2. 3
      README.md
  3. 8
      docker-compose.yml
  4. 6
      entrypoint.sh

16
Dockerfile

@ -0,0 +1,16 @@ @@ -0,0 +1,16 @@
FROM python:3.6
MAINTAINER charles@charlesreid1.com
RUN git clone https://git.charlesreid1.com/charlesreid1/charlesreid1.com-api.git
COPY entrypoint.sh /entrypoint.sh
RUN chmod 755 /entrypoint.sh
CMD ["python3", "main.py"]
# The entrypoint is run like this at container startup:
# /entrypoint.sh $CMD
#
# which expands to:
# /entrypoint.sh arg1 arg2 arg3
ENTRYPOINT ["/entrypoint.sh"]

3
README.md

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
# d-flask-api

8
docker-compose.yml

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
version: "3.1"
services:
stormy_api:
build: .
volumes:
- "api:/api"
ports:
- "1337:1337"

6
entrypoint.sh

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
#!/bin/sh
cd /api
#pip3 install -r requirements.txt
exec "$@"
Loading…
Cancel
Save