mirror of
https://github.com/cupcakearmy/docker-instabot.git
synced 2024-12-22 07:16:24 +00:00
Moved to alpine
This commit is contained in:
parent
c48aa24441
commit
d46e7c8ad8
@ -1,11 +1,11 @@
|
||||
FROM python:alpine
|
||||
FROM alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apk add --no-cache git
|
||||
RUN apk add --no-cache git python3
|
||||
RUN git clone https://github.com/instabot-py/instabot.py.git .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN python3 -m pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY ./app.py .
|
||||
|
||||
CMD [ "python", "-u", "./app.py" ]
|
||||
CMD [ "python3", "-u", "./app.py" ]
|
Loading…
Reference in New Issue
Block a user