Skip to content

Commit f5f84a9

Browse files
committed
Move script to .docker
1 parent 9062abd commit f5f84a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ RUN echo "deb http://archive.debian.org/debian/ buster main" > /etc/apt/sources.
1515

1616
# TODO install_packages calls apt-get update and then nukes the list files after. We should avoid multiple calls to apt-get update.....
1717
# We could probably fix this by running the update and installs ourself with `RUN --mount type=cache` but that is "experimental"
18-
COPY install_packages.sh /usr/local/bin/
19-
RUN chmod 755 /usr/local/bin/install_packages.sh
18+
COPY --chmod=755 .docker/install_packages.sh /usr/local/bin/
2019

2120
# Fix for Debian Buster EOL - point to archive repositories
2221
RUN sed -i 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.list && \

0 commit comments

Comments
 (0)