Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CoTA
moodle-assignsubmission_dta
Commits
94412dd8
Commit
94412dd8
authored
1 month ago
by
Lückemeyer
Browse files
Options
Download
Email Patches
Plain Diff
Delete Dockerfile
parent
11a41348
Pipeline
#11004
passed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+0
-25
Dockerfile
with
0 additions
and
25 deletions
+0
-25
Dockerfile
deleted
100644 → 0
+
0
-
25
View file @
11a41348
FROM
amazoncorretto:17.0.3-alpine
as
corretto-jdk
ENV
BASEDIR /data
ENV
TESTDIR $BASEDIR/test
ENV
SOURCEDIR $BASEDIR/src
ENV
RESULTDIR $BASEDIR/result
ENV
LIBSDIR $BASEDIR/libs
RUN
mkdir
-p
$TESTDIR
\
&&
mkdir
$SOURCEDIR
\
&&
mkdir
$RESULTDIR
\
&&
mkdir
-p
/
$LIBSDIR
/additional
ADD
target/dta-jdk17-junit5-runner-jar-with-dependencies.jar /$BASEDIR/app.jar
ADD
https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/5.10.0/junit-jupiter-api-5.10.0.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.10.0/junit-jupiter-engine-5.10.0.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/junit/platform/junit-platform-engine/1.10.0/junit-platform-engine-1.10.0.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/junit/platform/junit-platform-commons/1.10.0/junit-platform-commons-1.10.0.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/1.10.0/junit-platform-launcher-1.10.0.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/apiguardian/apiguardian-api/1.1.1/apiguardian-api-1.1.1.jar /$LIBSDIR/
ADD
https://repo1.maven.org/maven2/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar /$LIBSDIR/
WORKDIR
$BASEDIR
ENTRYPOINT
java -Djava.security.egd=file:/dev/./urandom -jar /$BASEDIR/app.jar "$SOURCEDIR/src:$TESTDIR/test" "$LIBSDIR/*:$TESTDIR/libs/*" $RESULTDIR
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets