Skip to content

Commit 6fa3d6e

Browse files
authored
Update Dockerfile
Fixup spelling of "environment" on line 13
1 parent d607b79 commit 6fa3d6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN go mod download
1010
# Copy the code into the container.
1111
COPY . .
1212

13-
# Set necessary environmet variables needed for our image and build the API server.
13+
# Set necessary environment variables needed for our image and build the API server.
1414
ENV GO111MODULE=on CGO_ENABLED=0 GOOS=linux GOARCH=amd64
1515
RUN go build -ldflags="-w -s" -o apiserver .
1616

@@ -24,4 +24,4 @@ EXPOSE 5000
2424

2525
# Command to run when starting the container.
2626
ENV CONFIG_PATH=/apiserver.yml
27-
ENTRYPOINT ["/apiserver"]
27+
ENTRYPOINT ["/apiserver"]

0 commit comments

Comments
 (0)