mirror of
https://github.com/Horhik/Instagram2Fedi.git
synced 2024-11-26 01:51:34 +00:00
11 lines
174 B
Docker
11 lines
174 B
Docker
FROM python
|
|
|
|
RUN pip install instabot
|
|
RUN pip3 install Mastodon.py
|
|
RUN pip3 install colorama
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT [ "python", "/app/__init__.py", "innubis"]
|