Dockerfile 157 B

12345678
  1. FROM ubuntu:18.04
  2. RUN apt-get update \
  3. && apt-get install --yes --no-install-recommends firefox
  4. RUN useradd --create-home fox
  5. USER fox
  6. CMD ["firefox"]