FROM debian:latest

ARG APPLICATIONS=vim

RUN apt-get -qy update && apt-get -y install ${APPLICATIONS}

WORKDIR /root