Designed and implemented pinp test

This commit is contained in:
2025-09-25 09:48:34 +01:00
commit c399f505bb
4 changed files with 25 additions and 0 deletions

7
inner/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM docker.io/library/alpine:latest
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT /entrypoint.sh

3
inner/entrypoint.sh Normal file
View File

@@ -0,0 +1,3 @@
echo "Inner container working"
echo
echo "SUCCESS!"