Docker file for running autocompose in docker

This commit is contained in:
Frederik Mogensen
2017-09-12 12:15:46 +02:00
parent 7b616a0a41
commit 83bc0afad6
2 changed files with 19 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3
WORKDIR /usr/src/app
COPY . .
RUN python ./setup.py install
ENTRYPOINT [ "python", "./autocompose.py" ]