Skip to content

Commit

Permalink
Fix Dockerfile lint error
Browse files Browse the repository at this point in the history
COPY with more than 2 arguments requires the last argument to end with /
https://github.com/mjanez/ckan-mqa/pull/5/files#annotation_17839586951
  • Loading branch information
mjanez authored Feb 8, 2024
1 parent 50620a7 commit 9c35ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ckan-mqa/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get -q -y update && \
python3 -m pip install pdm

WORKDIR ${APP_DIR}
COPY pyproject.toml pdm.lock .
COPY pyproject.toml pdm.lock ./

RUN pdm install --no-self --group prod

Expand Down
2 changes: 1 addition & 1 deletion ckan-mqa/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get -q -y update && \
python3 -m pip install pdm debugpy

WORKDIR ${APP_DIR}
COPY pyproject.toml pdm.lock .
COPY pyproject.toml pdm.lock ./

RUN pdm install --no-self --group prod

Expand Down

0 comments on commit 9c35ebf

Please sign in to comment.