FROM debian:stable-slim

# set a directory for the app
WORKDIR /root

# procps for ps
RUN apt-get update && apt-get install -y tcsh \
                                        gawk \
                                        vim \
                                        procps \
                                        wget \
                                        imagemagick \
                                        gnuplot \
					bash \
					pqiv 

# copy all the necessary files to the container
#COPY .netrc ./src ./
COPY  ./src ./
#COPY  ./bin  ./bin
#COPY  ./dat ./dat
#COPY   ./templates ./templates
#COPY  ./run.year_doy0_doy1_lon0_lon1_lat0_lat1_VtecGimId_IscaleGimId_2_Vtec-and-Iscale_vs_time.scr ./
##COPY  ./bin/year_doy0_doy1_lon0_lon1_lat0_lat1_VtecGimId_IscaleGimId_2_Vtec-and-Iscale_vs_time.scr ./
####COPY ./src ./

ENTRYPOINT ["/bin/tcsh"]
