docker-instabot/bot/dockerfile

11 lines
227 B
Plaintext
Raw Normal View History

2018-04-11 10:38:22 +00:00
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
2018-04-11 13:19:44 +00:00
COPY ./app.py .
2018-04-11 10:38:22 +00:00
CMD [ "python", "-u", "./app.py" ]