Skip to content

Commit

Permalink
Merge pull request #2 from kbaseincubator/develop
Browse files Browse the repository at this point in the history
Update main pre-0.2
  • Loading branch information
jsfillman authored May 7, 2024
2 parents 12c2f9d + d6b5246 commit 58ce2d3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# First stage: download and extract the busybox binary
FROM alpine as builder
RUN apk add --no-cache wget
RUN wget -O busybox https://busybox.net/downloads/binaries/1.31.0-defconfig-multiarch-musl/busybox-x86_64 && \
chmod +x busybox

# Second stage: create the minimal image
FROM scratch
COPY --from=builder /busybox /busybox

# Run the sleep command indefinitely
CMD ["/busybox", "sleep", "infinity"]

0 comments on commit 58ce2d3

Please sign in to comment.