From 8950c10ce26d1d21520d99847cfc70fa223af824 Mon Sep 17 00:00:00 2001 From: hkc Date: Thu, 22 Sep 2022 19:10:18 +0300 Subject: [PATCH] [WIP] Experimental Docker build (gone wrong) --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6c19294 --- /dev/null +++ b/Dockerfile @@ -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"]