docker-instabot/bot/dockerfile

11 lines
240 B
Plaintext
Raw Normal View History

2018-04-18 12:02:11 +00:00
FROM alpine
2018-04-11 10:38:22 +00:00
WORKDIR /app
2018-04-18 12:02:11 +00:00
RUN apk add --no-cache git python3
2018-04-11 10:38:22 +00:00
RUN git clone https://github.com/instabot-py/instabot.py.git .
2018-04-18 12:02:11 +00:00
RUN python3 -m pip install --no-cache-dir -r requirements.txt
2018-04-11 10:38:22 +00:00
2018-04-11 13:19:44 +00:00
COPY ./app.py .
2018-04-18 12:02:11 +00:00
CMD [ "python3", "-u", "./app.py" ]