mirror of
https://github.com/Horhik/Instagram2Fedi.git
synced 2024-11-22 16:11:32 +00:00
10 lines
148 B
Docker
10 lines
148 B
Docker
|
FROM python
|
||
|
|
||
|
RUN pip install instabot
|
||
|
RUN pip3 install Mastodon.py
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . /app
|
||
|
|
||
|
ENTRYPOINT [ "python", "/app/__init__.py", "innubis"]
|