Spaces:
Paused
Paused
File size: 269 Bytes
efc2d9c 1217469 efc2d9c 74609ea efc2d9c 1217469 ef9a2be 9b708c2 1217469 9b708c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM debian:bullseye-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
haproxy \
&& rm -rf /var/lib/apt/lists/*
COPY haproxy.cfg /etc/haproxy/haproxy.cfg
EXPOSE 7860
CMD ["haproxy", "-f", "/etc/haproxy/haproxy.cfg", "-db"]
|