commit
1a80419aec
4 changed files with 33 additions and 0 deletions
@ -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"] |
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
version: "3.1" |
||||
services: |
||||
stormy_api: |
||||
build: . |
||||
volumes: |
||||
- "api:/api" |
||||
ports: |
||||
- "1337:1337" |
Loading…
Reference in new issue