with entrypoint

This commit is contained in:
Kasper Juul Hermansen 2022-09-18 00:56:05 +02:00
parent c2d1a7b89e
commit 544716a223
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 8 additions and 1 deletions

View File

@ -3,4 +3,6 @@ FROM debian:bullseye-slim
# Kraken relies on this path being the specified path # Kraken relies on this path being the specified path
WORKDIR /src/work/ WORKDIR /src/work/
RUN echo "# README docker" > README.md COPY entry.sh /src/script.sh
CMD [ "/src/script.sh" ]

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -e
echo "# README docker" > README.md