tangled
alpha
login
or
join now
edavis.dev
/
plcwatch
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
fixup go build command
Eric Davis
11 months ago
2ae7caac
912472d8
+1
-1
1 changed file
expand all
collapse all
unified
split
Dockerfile
+1
-1
Dockerfile
···
3
3
COPY go.mod go.sum ./
4
4
RUN go mod download
5
5
COPY . .
6
6
-
RUN CGO_ENABLED=0 GOOS=linux go build -o /app/plcwatch
6
6
+
RUN CGO_ENABLED=0 GOOS=linux go build -o /app/plcwatch ./cmd/plcwatch
7
7
FROM alpine:latest
8
8
RUN apk --no-cache add ca-certificates
9
9
RUN adduser -D appuser