mirror of
https://github.com/Horhik/Instagram2Fedi.git
synced 2024-10-31 22:17:30 +00:00
13 lines
169 B
Docker
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"]
|
|
|