Instagram2Fedi/Dockerfile
2021-11-17 11:38:22 -05:00

13 lines
169 B
Docker
Executable file

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"]