diff options
author | Pherkel | 2023-09-18 18:11:33 +0200 |
---|---|---|
committer | Pherkel | 2023-09-18 18:11:33 +0200 |
commit | d44cf7b1cab683a8aa3876619c82226f4e6d6f3b (patch) | |
tree | dc5a0567d5ff939320c9737e1d66e9e83f0f534c /Dockerfile | |
parent | c09ff76ba6f4c5dd5de64a401efcd27449150aec (diff) |
fix
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 13 |
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" ] |