1
0
Fork 0

[WIP] Experimental Docker build (gone wrong)

This commit is contained in:
Casey 2022-09-22 19:10:18 +03:00
parent 3e707ab004
commit 8950c10ce2
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

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