diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 11:35:43 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 11:35:43 -0600 |
commit | e07410c71b3bbb73a296ddf22c52657f74609515 (patch) | |
tree | 7e37be7b3da3855b55007c6f5cf60a98a222618f /Dockerfile | |
parent | 403bd1b54ca7d6328e0beadb5a79149a89563730 (diff) |
Updating to use my new 'make' workflow
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,6 +4,9 @@ FROM alpine:3.3 RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories +# Makes using the terminal in container usable +ENV TERM xterm-256color + # Install all the needed packages RUN apk add --no-cache \ # My Stuff @@ -79,6 +82,6 @@ RUN nvim +UpdateRemotePlugins +qa ADD zshrc /root/.zshrc -WORKDIR /work +WORKDIR /app CMD ["/bin/zsh"] |