diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ca7463f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +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" ] |