1
0
Fork 0
mirror of https://github.com/Horhik/Instagram2Fedi.git synced 2025-01-23 01:06:35 +00:00
Instagram2Fedi/Dockerfile
2021-09-01 00:03:02 +03:00

13 lines
169 B
Docker

FROM python:3.9
RUN pip install instaloader
RUN pip install Mastodon.py
RUN pip install colorama
COPY . /app
WORKDIR /app
ENTRYPOINT ["python", "/app/src/main.py"]