Compare commits

..

No commits in common. "6bff6fd73eb9504c56eb1a7cea9b0103bc100052" and "6b3c48e0675ea80456245de2a95170405362fbef" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View File

@ -1,6 +0,0 @@
.git
.gitignore
config.ini
README.md
TODO
requirements.txt

View File

@ -1,11 +1,6 @@
FROM python:3.10-alpine FROM python:3.10-alpine
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt && rm /app/requirements.txt
COPY . /app COPY . /app
WORKDIR /app
RUN pip install -r /app/requirements.txt
CMD ["python3", "-m", "mastoposter", "/config.ini"] CMD ["python3", "-m", "mastoposter", "/config.ini"]