Instagram2Fedi/Dockerfile

13 lines
169 B
Text
Raw Normal View History

2021-08-31 21:57:12 +03:00
FROM python:3.9
2021-08-31 17:03:06 +03:00
2021-08-31 21:57:12 +03:00
RUN pip install instaloader
RUN pip install Mastodon.py
RUN pip install colorama
2021-08-31 17:03:06 +03:00
COPY . /app
2021-08-31 17:45:42 +03:00
WORKDIR /app
2021-08-31 17:03:06 +03:00
2021-08-31 21:57:12 +03:00
2021-09-01 00:03:02 +03:00
ENTRYPOINT ["python", "/app/src/main.py"]
2021-08-31 21:57:12 +03:00