We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7abb1c3 commit 0a4d726Copy full SHA for 0a4d726
.dockerignore
@@ -0,0 +1,2 @@
1
+.build
2
+.git
Dockerfile
@@ -1,4 +1,7 @@
-FROM swift:5.3-focal
+# ================================
+# Build image
3
4
+FROM swift:5.4 as build
5
6
WORKDIR /build
7
@@ -12,4 +15,4 @@ RUN swift package resolve
12
15
# Copy entire repo into container
13
16
COPY . .
14
17
-RUN swift test --sanitize=thread --enable-test-discovery
18
+RUN swift test --enable-test-discovery --sanitize=thread
0 commit comments