mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-26 19:39:45 +01:00
chore: Use a single COPY
by better leveraging .dockerignore
patterns
This commit is contained in:
parent
e02e8be19f
commit
74892e45c5
@ -1,2 +1,11 @@
|
||||
# Exclude everything from the Docker build context:
|
||||
*
|
||||
|
||||
# Except for this content:
|
||||
!bin/
|
||||
!etc/
|
||||
!testssl.sh
|
||||
|
||||
# But additionally exclude this nested content:
|
||||
bin/openssl.Darwin.*
|
||||
bin/openssl.FreeBSD.*
|
||||
|
@ -12,9 +12,8 @@ RUN apk update && \
|
||||
USER testssl
|
||||
WORKDIR /home/testssl/
|
||||
|
||||
COPY --chown=testssl:testssl etc/. /home/testssl/etc/
|
||||
COPY --chown=testssl:testssl bin/. /home/testssl/bin/
|
||||
COPY --chown=testssl:testssl testssl.sh /home/testssl/
|
||||
# Copy over build context (after filtered by .dockerignore): bin/ etc/ testssl.sh
|
||||
COPY --chown=testssl . /home/testssl/
|
||||
|
||||
ENTRYPOINT ["testssl.sh"]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user