shellspec/shellspec

View on GitHub
dockerfiles/ubuntu-18.04-busybox-1.27.2

Summary

Maintainability
Test Coverage
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive DEBCONF_NOWARNINGS=yes
RUN useradd -m user \
 && apt-get update && apt-get -y install busybox \
 && /bin/busybox --install -s
ENV SH=/bin/ash