We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d607b79 + 6fa3d6e commit 0e58b67Copy full SHA for 0e58b67
Dockerfile
@@ -10,7 +10,7 @@ RUN go mod download
10
# Copy the code into the container.
11
COPY . .
12
13
-# Set necessary environmet variables needed for our image and build the API server.
+# Set necessary environment variables needed for our image and build the API server.
14
ENV GO111MODULE=on CGO_ENABLED=0 GOOS=linux GOARCH=amd64
15
RUN go build -ldflags="-w -s" -o apiserver .
16
@@ -24,4 +24,4 @@ EXPOSE 5000
24
25
# Command to run when starting the container.
26
ENV CONFIG_PATH=/apiserver.yml
27
-ENTRYPOINT ["/apiserver"]
+ENTRYPOINT ["/apiserver"]
0 commit comments