We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d75358 + 26f8329 commit 79cb4c1Copy full SHA for 79cb4c1
Dockerfile.tester
@@ -0,0 +1,15 @@
1
+FROM golang:1.16.3-alpine3.13
2
+
3
+WORKDIR /code
4
5
+ENV CGO_ENABLED 0
6
7
+# This is necessary to execute fixtures/update-dns.sh script
8
+RUN apk --no-cache add curl
9
10
+# Pre-install dependencies to cache them as a separate image layer
11
+COPY go.mod go.sum ./
12
+RUN go mod download
13
14
+# Build
15
+COPY . /code
docker-compose.yml
@@ -33,7 +33,7 @@ services:
33
tester:
34
build:
35
context: .
36
- dockerfile: Dockerfile.test
+ dockerfile: Dockerfile.tester
37
depends_on:
38
- pebble
39
- challtestsrv
0 commit comments