Skip to content

Commit 5d281cd

Browse files
authored
fix: Add note about original dockerfile
1 parent d7ccb98 commit 5d281cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/noop/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# VERSION 0.1.0
2+
# Based on https://github.com/JanNash/docker_noop
23

34
FROM alpine:latest AS builder
45
COPY noop/noop.c /
56
RUN apk add --no-cache gcc musl-dev && gcc -static -o /noop /noop.c
67

78
FROM scratch
8-
MAINTAINER Jan Nash <jnash@jnash.de>
99

1010
COPY --from=builder /noop /noop
1111
CMD ["/noop"]

0 commit comments

Comments
 (0)