mirror of
https://github.com/cupcakearmy/docker-instabot.git
synced 2024-12-21 23:16:23 +00:00
11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
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" ] |