File size: 215 Bytes
1025e4a
 
 
 
 
c703032
 
1025e4a
 
1
2
3
4
5
6
7
8
9
10
FROM debian:stable AS builder
WORKDIR /app
COPY . .
RUN chmod +x imgapi

FROM gcr.io/distroless/base-debian13
WORKDIR /
COPY --from=builder /app/imgapi /imgapi
CMD ["/imgapi", "-max-size", "24800", "-port", "7860"]