mastoposter/Dockerfile

7 lines
143 B
Docker
Raw Normal View History

FROM python:3.10-alpine
COPY . /app
WORKDIR /app
2022-09-22 19:16:52 +03:00
RUN pip install -r /app/requirements.txt
CMD ["python3", "-m", "mastoposter", "/config.ini"]