mirror of
https://github.com/Horhik/Instagram2Fedi.git
synced 2024-11-29 11:31:27 +00:00
14 lines
205 B
Docker
14 lines
205 B
Docker
FROM python:3.9
|
|
|
|
RUN pip install instabot
|
|
RUN pip install instaloader
|
|
RUN pip install Mastodon.py
|
|
RUN pip install colorama
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
|
|
ENTRYPOINT ["python", "/app/src/main.py", "innubis"]
|
|
|