Instagram2Fedi/Dockerfile

11 lines
174 B
Docker
Raw Normal View History

2021-08-31 14:03:06 +00:00
FROM python
RUN pip install instabot
RUN pip3 install Mastodon.py
2021-08-31 15:47:21 +00:00
RUN pip3 install colorama
2021-08-31 14:03:06 +00:00
COPY . /app
2021-08-31 14:45:42 +00:00
WORKDIR /app
2021-08-31 14:03:06 +00:00
ENTRYPOINT [ "python", "/app/__init__.py", "innubis"]