mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-03 22:21:55 +00:00 
			
		
		
		
	This fixes currently failing Docker builds. kemalcr/kemal in version 0.26.0 requires Crystal 0.30.0 which is not yet available on Alpine 3.10 (previously used as the Docker base image).
		
			
				
	
	
		
			29 lines
		
	
	
		
			1011 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1011 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:edge AS builder
 | 
						||
RUN apk add -u crystal shards libc-dev \
 | 
						||
    yaml-dev libxml2-dev sqlite-dev sqlite-static zlib-dev openssl-dev
 | 
						||
WORKDIR /invidious
 | 
						||
COPY ./shard.yml ./shard.yml
 | 
						||
RUN shards update && shards install
 | 
						||
COPY ./src/ ./src/
 | 
						||
# TODO: .git folder is required for building – this is destructive.
 | 
						||
# See definition of CURRENT_BRANCH, CURRENT_COMMIT and CURRENT_VERSION.
 | 
						||
COPY ./.git/ ./.git/
 | 
						||
RUN crystal build --static --release \
 | 
						||
# TODO: Remove next line, see https://github.com/crystal-lang/crystal/issues/7946
 | 
						||
    -Dmusl \
 | 
						||
    ./src/invidious.cr
 | 
						||
 | 
						||
FROM alpine:latest
 | 
						||
RUN apk add -u imagemagick ttf-opensans
 | 
						||
WORKDIR /invidious
 | 
						||
RUN addgroup -g 1000 -S invidious && \
 | 
						||
    adduser -u 1000 -S invidious -G invidious
 | 
						||
COPY ./assets/ ./assets/
 | 
						||
COPY ./config/config.yml ./config/config.yml
 | 
						||
COPY ./config/sql/ ./config/sql/
 | 
						||
COPY ./locales/ ./locales/
 | 
						||
RUN sed -i 's/host: localhost/host: postgres/' config/config.yml
 | 
						||
COPY --from=builder /invidious/invidious .
 | 
						||
USER invidious
 | 
						||
CMD [ "/invidious/invidious" ]
 |