forked from cory/tildefriends
		
	Add a docker file. Runs enough to produce some output but not really tested.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3753 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
		
							
								
								
									
										4
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								.dockerignore
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | |||||||
|  | .svn | ||||||
|  | db.sqlite | ||||||
|  | out/**/*.o | ||||||
|  | out/**/*.d | ||||||
							
								
								
									
										22
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								Dockerfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | |||||||
|  | FROM debian:bullseye AS build | ||||||
|  |  | ||||||
|  | RUN apt-get update && \ | ||||||
|  | 	apt-get install -y --no-install-recommends \ | ||||||
|  | 		build-essential \ | ||||||
|  | 		libsodium-dev \ | ||||||
|  | 		libssl-dev | ||||||
|  |  | ||||||
|  | COPY . /app | ||||||
|  | RUN make -C /app -j $(nproc) release | ||||||
|  |  | ||||||
|  | FROM debian:bullseye | ||||||
|  | RUN apt-get update && \ | ||||||
|  | 	apt-get install -y --no-install-recommends \ | ||||||
|  | 		libsodium23 \ | ||||||
|  | 		libssl1.1 | ||||||
|  | COPY --from=build /app/out/release/tildefriends /app/out/release/tildefriends | ||||||
|  | COPY --from=build /app/apps /app/apps | ||||||
|  | COPY --from=build /app/core /app/core | ||||||
|  | WORKDIR /app | ||||||
|  | EXPOSE 12345 | ||||||
|  | CMD ["/app/out/release/tildefriends"] | ||||||
		Reference in New Issue
	
	Block a user