Skip to content

Commit

Permalink
add missing slash in file copying (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored May 3, 2024
1 parent 8097282 commit 2973131
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed

- Added missing trailing slash when copying files in `Dockerfile`.

## [2024.20]

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/django_twc_project/Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ RUN case ${BUILDARCH} in \

FROM base as app
COPY --from=py --link /usr/local /usr/local
COPY --link manage.py package.json /app
COPY --link manage.py package.json /app/
COPY --link {{ module_name }} /app/{{ module_name }}
COPY --link templates /app/templates

Expand Down

0 comments on commit 2973131

Please sign in to comment.