From b4dacfadd9284069726170e052a52d3963a23c02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 4 Dec 2023 23:39:30 +0000 Subject: [PATCH] :rocket: add Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cde9ab1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.12 + +LABEL maintainer="https://github.com/techouse" + +RUN pip install --no-cache-dir --upgrade pip && \ + pip install --no-cache-dir mysql-to-sqlite3 + +ENTRYPOINT ["mysql2sqlite"] \ No newline at end of file