diff options
author | 2021-05-16 20:20:01 +0300 | |
---|---|---|
committer | 2021-05-16 20:20:01 +0300 | |
commit | f3f1f4c539988c84d44af2ec2e0fecdb4809bb52 (patch) | |
tree | 97aeae09e50c60ea7950c44aee433dabb572768a /Dockerfile | |
parent | Merge pull request #1582 from python-discord/39-poetry (diff) |
Fixes Dependency Install Flag In Dockerfile
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 91e9ce18e..c285898dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /bot # Install project dependencies COPY pyproject.toml poetry.lock ./ -RUN poetry install --prod +RUN poetry install --no-dev # Define Git SHA build argument ARG git_sha="development" |