Moved to src folder

This commit is contained in:
nicco
2018-04-11 15:19:44 +02:00
parent b0e45eb333
commit 680d164724
3 changed files with 13 additions and 33 deletions

11
bot/dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:alpine
WORKDIR /app
RUN apk add --no-cache git
RUN git clone https://github.com/instabot-py/instabot.py.git .
RUN pip install --no-cache-dir -r requirements.txt
COPY ./app.py .
CMD [ "python", "-u", "./app.py" ]