diff --git a/Dockerfile b/Dockerfile index 906ed29..b8d28bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . /app RUN apk update && apk add --no-cache git gcc curl RUN curl -sSL https://install.python-poetry.org | python ENV PATH="${PATH}:/root/.local/bin" -RUN poetry config virtualenvs.create false && poetry install --without dev +RUN poetry config virtualenvs.create false && poetry install --without dev --no-root EXPOSE 8000 diff --git a/pyproject.toml b/pyproject.toml index 0c7e143..7eff399 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,9 +3,6 @@ name = "discoursio-inbox" version = "0.3.2" description = "Inbox server for discours.io" authors = ["Tony Rewin "] -packages = [ - { include = "inbox" } -] [tool.poetry.dependencies] python = "^3.12"