Spaces:
Sleeping
Sleeping
File size: 269 Bytes
fd4cccf 90660c1 fd4cccf 90660c1 | 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"]
|