60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Docker
		
	
	
	
| FROM debian:10-slim
 | |
| 
 | |
| ENV DEBIAN_FRONTEND=noninteractive
 | |
| 
 | |
| ARG TARGETPLATFORM
 | |
| ARG BUILDPLATFORM
 | |
| 
 | |
| RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
 | |
|         && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
 | |
| 
 | |
| ENV LANG=en_US.utf8 NODE_VERSION=v12.20.0
 | |
| 
 | |
| RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM"
 | |
| 
 | |
| # install node
 | |
| RUN apt-get update && apt-get install -y wget xz-utils
 | |
| ADD docker/node-installer.sh /usr/local/sbin
 | |
| RUN chmod +x /usr/local/sbin/node-installer.sh && node-installer.sh
 | |
| ENV PATH=/usr/local/lib/nodejs/bin:$PATH
 | |
| 
 | |
| # node service requirements
 | |
| RUN apt-get update && \
 | |
|         apt-get install -y e2fsprogs xfsprogs fatresize dosfstools nfs-common cifs-utils sudo && \
 | |
|         rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| # controller requirements
 | |
| RUN apt-get update && \
 | |
|         apt-get install -y ansible && \
 | |
|         rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| # npm requirements
 | |
| # gcc and g++ required by grpc-usd until proper upstream support
 | |
| RUN apt-get update && \
 | |
|         apt-get install -y python make gcc g++ && \
 | |
|         rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| # install wrappers
 | |
| ADD docker/iscsiadm /usr/local/sbin
 | |
| RUN chmod +x /usr/local/sbin/iscsiadm
 | |
| 
 | |
| ADD docker/multipath /usr/local/sbin
 | |
| RUN chmod +x /usr/local/sbin/multipath
 | |
| 
 | |
| # Run as a non-root user
 | |
| RUN useradd --create-home csi \
 | |
|         && mkdir /home/csi/app \
 | |
|         && chown -R csi: /home/csi
 | |
| WORKDIR /home/csi/app
 | |
| USER csi
 | |
| 
 | |
| COPY package*.json ./
 | |
| RUN npm install
 | |
| 
 | |
| COPY --chown=csi:csi . .
 | |
| 
 | |
| USER root
 | |
| 
 | |
| EXPOSE 50051
 | |
| ENTRYPOINT [ "bin/democratic-csi" ]
 |