You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
#
 | 
						|
# Let us create an image for healthcareio
 | 
						|
#   The image will contain the {X12} Parser and the 
 | 
						|
# FROM ubuntu:bionic-20200403
 | 
						|
FROM ubuntu:focal
 | 
						|
RUN ["apt","update","--fix-missing"]
 | 
						|
RUN ["apt-get","upgrade","-y"]
 | 
						|
 | 
						|
RUN ["apt-get","-y","install","apt-utils"]
 | 
						|
 | 
						|
RUN ["apt","update","--fix-missing"]
 | 
						|
RUN ["apt-get","upgrade","-y"]
 | 
						|
RUN ["apt-get","install","-y","mongo","sqlite3","sqlite3-pcre","libsqlite3-dev","python3-dev","python3","python3-pip","git","python3-virtualenv","wget"]
 | 
						|
#
 | 
						|
#
 | 
						|
RUN ["pip3","install","--upgrade","pip"]
 | 
						|
# RUN ["pip3","install","git+https://healthcare.the-phi.com/git/code/parser.git","botocore"]
 | 
						|
USER health-user
 | 
						|
#
 | 
						|
# This volume is where the data will be loaded from (otherwise it is assumed the user will have it in the container somehow)
 | 
						|
#
 | 
						|
VOLUME ["/data"]
 | 
						|
#
 | 
						|
# This is the port from which some degree of monitoring can/will happen
 | 
						|
EXPOSE 80
 | 
						|
# wget https://healthcareio.the-phi.com/git/code/parser.git/bootup.sh 
 | 
						|
COPY bootup.sh bootup.sh
 | 
						|
ENTRYPOINT ["bash","-C"]
 | 
						|
CMD ["bootup.sh"]
 | 
						|
# VOLUME ["/home/health-user/healthcare-io/","/home-healthuser/.healthcareio"]
 | 
						|
# RUN ["pip3","install","git+https://healthcareio.the-phi.com/git"]
 |