Skip to content

Commit 18b89ae

Browse files
committed
Fix linter warnings and update dependencies to latest
1 parent 02b2af6 commit 18b89ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1769
-320
lines changed

Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@ ENV PATH="${POETRY_HOME}/bin:${PATH}"
1919
RUN poetry config virtualenvs.create ${POETRY_VIRTUALENVS_CREATE} && \
2020
poetry config installer.parallel "${POETRY_INSTALLER_PARALLEL}"
2121

22+
# Install redis-server for pytest-redis
23+
RUN apt-get update && \
24+
apt-get install -y --no-install-recommends redis-server && \
25+
apt-get clean && \
26+
rm -rf /var/lib/apt/lists/*
27+
2228
WORKDIR /local
2329
COPY . /local
2430

2531
# Install the app
26-
RUN poetry install --with dev --all-extras
32+
RUN poetry install --all-groups

0 commit comments

Comments
 (0)