Dockerfile: use COPY --link for source code as well

I missed the most important COPY in 637ca59375

Copying the source code into the dev-container does not depend on the parent
layers, so can use the --link option as well.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2023-06-01 22:14:38 +02:00
parent cc51f0b3d3
commit ff2342154b
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -646,4 +646,4 @@ EOT
# > make shell # > make shell
# > SYSTEMD=true make shell # > SYSTEMD=true make shell
FROM dev-base AS dev FROM dev-base AS dev
COPY . . COPY --link . .