7 lines
143 B
Docker
7 lines
143 B
Docker
|
FROM archlinux:latest
|
||
|
ENV container=docker
|
||
|
|
||
|
RUN pacman -Sy --noconfirm python
|
||
|
|
||
|
VOLUME ["/sys/fs/cgroup", "/tmp", "/run"]
|
||
|
CMD ["/usr/sbin/init"]
|