Skip to content

Commit a21e550

Browse files
authored
Merge pull request #51 from aifoundry-org/fix-targetos-env-var
fix silly typo in Dockerfile, since it is not a Makefile
2 parents 85e3c06 + a5d373b commit a21e550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ WORKDIR /app
1212
COPY go.mod go.sum ./
1313
RUN go mod download
1414
COPY . .
15-
RUN make install TARGET=/oxide-controller OS=$(TARGETOS) ARCH=$(TARGETARCH)
15+
RUN make install TARGET=/oxide-controller OS=${TARGETOS} ARCH=${TARGETARCH}
1616

1717
FROM scratch
1818
COPY --from=build /oxide-controller /oxide-controller

0 commit comments

Comments
 (0)