5 lines
180 B
Text
5 lines
180 B
Text
|
FROM debian:bookworm-slim
|
||
|
COPY entrypoint.sh /run/entrypoint.sh
|
||
|
# if we rebuild, we should notice this file change
|
||
|
COPY input.txt /run/input.txt
|
||
|
ENTRYPOINT [ "/run/entrypoint.sh" ]
|