aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPherkel2023-09-18 18:11:33 +0200
committerPherkel2023-09-18 18:11:33 +0200
commitd44cf7b1cab683a8aa3876619c82226f4e6d6f3b (patch)
treedc5a0567d5ff939320c9737e1d66e9e83f0f534c /Dockerfile
parentc09ff76ba6f4c5dd5de64a401efcd27449150aec (diff)
fix
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index ca7463f..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM python:3.10
-
-# install python poetry
-RUN curl -sSL https://install.python-poetry.org | python3 -
-
-WORKDIR /app
-
-COPY readme.md mypy.ini poetry.lock pyproject.toml ./
-COPY swr2_asr ./swr2_asr
-ENV POETRY_VIRTUALENVS_IN_PROJECT=true
-RUN /root/.local/bin/poetry --no-interaction install --without dev
-
-ENTRYPOINT [ "/root/.local/bin/poetry", "run", "python", "-m", "swr2_asr" ]