Instagram2Fedi/Dockerfile

13 lines
169 B
Docker
Raw Normal View History

2021-08-31 18:57:12 +00:00
FROM python:3.9
2021-08-31 14:03:06 +00:00
2021-08-31 18:57:12 +00:00
RUN pip install instaloader
RUN pip install Mastodon.py
RUN pip 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
2021-08-31 18:57:12 +00:00
2021-08-31 21:03:02 +00:00
ENTRYPOINT ["python", "/app/src/main.py"]
2021-08-31 18:57:12 +00:00