diff options
author | Jonas Kohl | 2024-11-06 15:37:39 +0100 |
---|---|---|
committer | Jonas Kohl | 2024-11-06 15:37:39 +0100 |
commit | 557bb0c775f880ac7de99b9608045ff206614ed8 (patch) | |
tree | 20fc0e980cece66d06837d75ec150e3830b09d60 /containers/compiler/Dockerfile |
Initial commit
Diffstat (limited to 'containers/compiler/Dockerfile')
-rw-r--r-- | containers/compiler/Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/containers/compiler/Dockerfile b/containers/compiler/Dockerfile new file mode 100644 index 0000000..6849c8f --- /dev/null +++ b/containers/compiler/Dockerfile @@ -0,0 +1,5 @@ +FROM eclipse-temurin:23-jdk +COPY --chmod=700 ./execute.sh /execute.sh +RUN mkdir -p /opt/src +WORKDIR /opt/src +ENTRYPOINT ["/execute.sh"] |