combine the two files into one and create a directory with languages

This commit is contained in:
alpheratz0 2021-11-20 00:57:48 -03:00
parent bfea545af6
commit 02eb365650
6 changed files with 184 additions and 143 deletions

View file

@ -1,5 +1,7 @@
FROM alpine:latest
COPY tree-EN.sh /tree-EN.sh
RUN apk add --update ncurses bash
RUN mkdir /langs
COPY langs /langs
COPY tree.sh /tree.sh
RUN apk add --update ncurses grep bash
ENV TERM=xterm-256color
CMD ["bash","/tree-EN.sh"]
CMD ["bash","/tree.sh"]