For a pure alpine container, adding this to the dockerfile works:
FROM alpine:latest
# Make Alpine nice
RUN echo 'alias ll="ls -la"' >> /root/.profile
ENV ENV=/root/.profile
So for the OP, the /root/.profile file already exists and only the last line is necessary.