diff --git a/Dockerfile b/Dockerfile new file mode 100755 index 0000000..d1e12cb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python + +# Create app directory +WORKDIR /usr/src/app + +COPY requirements.txt ./ + +RUN pip install -r requirements.txt + +# Bundle app source +COPY . . + +CMD [ "sh", "-c", "python src/main.py" ]