docker-instabot/dockerfile

9 lines
210 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
CMD [ "python", "-u", "./app.py" ]