mirror of
https://github.com/paul-nameless/tg
synced 2024-11-21 19:33:09 +00:00
Fix dockerfile
This commit is contained in:
parent
9dacb30bfb
commit
81bcb5e942
2 changed files with 9 additions and 9 deletions
|
@ -8,7 +8,7 @@ RUN pip3 install --disable-pip-version-check --no-cache-dir poetry
|
|||
|
||||
COPY poetry.lock pyproject.toml /app/
|
||||
|
||||
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-dev
|
||||
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-dev --no-root
|
||||
|
||||
COPY . /app
|
||||
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
[tool.black]
|
||||
line-length = 79
|
||||
|
||||
[tool.isort]
|
||||
line_length = 79
|
||||
multi_line_output = 3
|
||||
include_trailing_comma = true
|
||||
|
||||
[tool.poetry]
|
||||
name = "tg"
|
||||
version = "0.17.0"
|
||||
|
@ -33,3 +25,11 @@ tg = "tg.__main__:main"
|
|||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.black]
|
||||
line-length = 79
|
||||
|
||||
[tool.isort]
|
||||
line_length = 79
|
||||
multi_line_output = 3
|
||||
include_trailing_comma = true
|
||||
|
|
Loading…
Reference in a new issue