Sign inSign up

djs55/emulation-example-tini

By djs55

Updated almost 4 years ago

A small emulation test case

Image
0

100K+

djs55/emulation-example-tini repository overview

Dockerfile:

FROM ubuntu
RUN apt-get update && apt-get install curl -y
WORKDIR /
RUN curl -sLO https://github.com/krallin/tini/releases/download/v0.19.0/tini-amd64
RUN chmod +x tini-amd64
CMD [ "/tini-amd64", "-s", "--", "uname", "-a" ]

Build:

$ docker build -t djs55/emulation-example-tini --platform linux/amd64 . 

Run:

$ docker run --platform linux/amd64 djs55/emulation-example-tini
Linux a3491d71b70e 5.15.49-linuxkit #1 SMP PREEMPT Tue Sep 13 07:51:32 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Tag summary

Content type

Image

Digest

sha256:032da71b7

Size

58.3 MB

Last updated

almost 4 years ago

docker pull djs55/emulation-example-tini