Files
docker-haproxy/Dockerfile
2019-04-14 19:34:54 +02:00

16 lines
297 B
Docker

FROM fedora
LABEL maintainer="Jens Kleineheismann <heinzel@heinzelwelt.de>"
RUN dnf -y update && \
dnf -y install procps-ng iproute net-tools && \
dnf -y install haproxy && \
dnf clean all
COPY container-filesystem/ /
EXPOSE 80/tcp
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["--"]