9 lines
268 B
Docker
9 lines
268 B
Docker
FROM archlinux
|
|
|
|
LABEL org.opencontainers.image.title="janishutz dev containers base"
|
|
LABEL org.opencontainers.image.description="janishutz dev containers base image, off which other containers are to be based"
|
|
|
|
RUN pacman --noconfirm -Sy fish wget git
|
|
|
|
CMD [ "fish" ]
|