FROM globaldigitalagency/sample:8.1

## add overrides below

# nvm
# replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh

# update the repository sources list
# and install dependencies
RUN apt-get update \
    && apt-get install -y curl \
    && apt-get -y autoclean

## keep on last line to avoid rigth access
USER www-data