diff options
author | Pherkel | 2023-09-18 18:13:46 +0200 |
---|---|---|
committer | GitHub | 2023-09-18 18:13:46 +0200 |
commit | f94506764bde3e4d41dc593e9d11aa7330c00e30 (patch) | |
tree | 6fc438536a72e195805c1aea97926f4c9bbd4f85 /Dockerfile | |
parent | 8b3a0b47813733ef67befa6959a4d24f8518b5b7 (diff) | |
parent | 21a3b1d7cc8544fa0031b8934283382bdfd1d8f1 (diff) |
Merge pull request #38 from Algo-Boys/decoder
Decoder
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" ] |