12 lines
176 B
Docker
12 lines
176 B
Docker
from docker.io/alpine:latest
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
ENV RUST_LOG=info
|
|
|
|
COPY ./imageproxy /usr/bin/imageproxy
|
|
|
|
EXPOSE 2999
|
|
|
|
ENTRYPOINT ["/usr/bin/imageproxy"]
|