diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..63f8b98 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM python:stretch +LABEL maintainer="txt3rob@gmail.com" + +# update +RUN apt-get update && apt-get install locales git wget nano -y + +# Set default locale for the environment +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en + +RUN pip install git+https://github.com/tijme/angularjs-csti-scanner.git + + + +CMD ["/bin/bash"]