We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b421b4 commit f829630Copy full SHA for f829630
1 file changed
Docker/PlexAniSync/Dockerfile
@@ -16,6 +16,8 @@ RUN pipx --global install poetry
16
# setup user, bash default shell
17
RUN useradd app -m -s /bin/bash
18
RUN mkdir -p /config && chown -R app /config
19
+
20
+# switch user and shell used following commands
21
USER app
22
SHELL ["/bin/bash", "-c"]
23
@@ -26,7 +28,7 @@ COPY pyproject.toml poetry.lock PlexAniSync.py custom_mappings_schema.json Docke
26
28
COPY plexanisync /plexanisync/plexanisync
27
29
30
# install app dependencies
-RUN poetry install --no-interaction --no-ansi --no-cache --quiet
31
+RUN poetry install --without dev,test --no-interaction --no-ansi --no-cache --quiet
32
33
# activate venv
34
RUN source $(poetry env info --path)/bin/activate
0 commit comments