26 lines
		
	
	
		
			821 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			821 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Author:Mateusz Kędziora https://mkedziora.pl
 | 
						|
 | 
						|
FROM golang:1.23.2-alpine AS builder
 | 
						|
WORKDIR /app
 | 
						|
COPY go.mod go.sum* ./
 | 
						|
RUN go mod download
 | 
						|
COPY *.go ./
 | 
						|
COPY . .
 | 
						|
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
 | 
						|
 | 
						|
# Etap minifikacji
 | 
						|
FROM node:alpine AS minifier
 | 
						|
WORKDIR /app
 | 
						|
RUN yarn global add html-minifier clean-css-cli terser
 | 
						|
COPY public/ ./public/
 | 
						|
RUN find ./public -name "*.html" -exec html-minifier --collapse-whitespace --remove-optional-tags --minify-js true --minify-css true {} -o {} \;
 | 
						|
RUN find ./public/css -name "*.css" -exec cleancss -o {} {} \;
 | 
						|
RUN find ./public/js -name "*.js" -exec terser {} --compress --mangle --output {} \;
 | 
						|
 | 
						|
FROM alpine:latest
 | 
						|
RUN apk --no-cache add ca-certificates
 | 
						|
WORKDIR /root/
 | 
						|
COPY --from=builder /app/main .
 | 
						|
COPY --from=minifier /app/public/ ./public/
 | 
						|
EXPOSE 8000
 | 
						|
CMD ["./main"] |