Skip to content

Commit 00b9822

Browse files
committed
🐛 Fixes issue with ansible complaining about a perfectly valid path
Fixes #11 Path warning when running ansible-lint
1 parent e8a5aaa commit 00b9822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM pipelinecomponents/base-entrypoint:0.5.0 as entrypoint
88
# ------------------------------------------------------------------------------
99
FROM python:3.12.4-alpine3.19 as build
1010
ENV PYTHONUSERBASE /app
11-
ENV PATH "$PATH:/app/bin/"
11+
ENV PATH "$PATH:/app/bin"
1212

1313
WORKDIR /app/
1414
COPY app /app/
@@ -34,7 +34,7 @@ FROM python:3.12.4-alpine3.19
3434
# hadolint ignore=DL3018
3535
RUN apk add --no-cache git libffi libxml2 libxslt
3636

37-
ENV PATH "$PATH:/app/bin/"
37+
ENV PATH "$PATH:/app/bin"
3838
ENV PYTHONUSERBASE /app
3939
COPY --from=build /app /app
4040

0 commit comments

Comments
 (0)