Here is what I setup for a quick n dirty testing. It's a pretty "fat" image, 
but I don't feel like optimizing it at this point. You can probably do away 
with a bunch of dependencies if You relegate yourself to cli only Flent. It was 
based on a previous attempt I saw somewhere here.

```
FROM ubuntu:hirsute
RUN apt-get update && apt-get install -y locales software-properties-common && \
    sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
    locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
RUN add-apt-repository ppa:tohojo/flent
RUN apt-get update
RUN apt install -y flent netperf irtt iperf fping bsdmainutils
RUN apt remove software-properties-common locales -y && apt clean && apt 
autoremove -y && rm -rf /var/lib/apt/lists/*
RUN chown root.root /usr/bin/fping && chmod 4755 /usr/bin/fping
RUN useradd -U -u 1000 flent
USER flent
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/tohojo/flent/issues/220#issuecomment-857019602
_______________________________________________
Flent-users mailing list -- flent-users@flent.org
To unsubscribe send an email to flent-users-le...@flent.org

Reply via email to