mirror of
https://github.com/sadoyan/aralez.git
synced 2026-05-30 03:44:06 +08:00
14 lines
361 B
Docker
14 lines
361 B
Docker
FROM debian:trixie-slim
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates curl net-tools iputils-ping
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY aralez /usr/local/bin/aralez
|
|
|
|
RUN chmod +x /usr/local/bin/aralez
|
|
RUN mkdir -p /etc/aralez/certs/upstreams
|
|
|
|
WORKDIR /etc/aralez
|
|
|
|
ENTRYPOINT ["/usr/local/bin/aralez", "-c", "/etc/aralez/main.yaml"]
|