mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 18:04:15 +00:00
This way it runs as root so files always owned by root. Fix #887 This is the simplest fix for 1.13, we can also use this for creating the main system initrd, but that needs more changes so leaving for 1.14. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
7 lines
79 B
Docker
7 lines
79 B
Docker
FROM alpine:3.4
|
|
|
|
COPY . /
|
|
|
|
ENTRYPOINT ["/bin/sh", "-c"]
|
|
CMD ["/tar2initrd.sh"]
|