Dockerfile 190 B

123456789
  1. FROM nginx:latest
  2. RUN apt-get update \
  3. && apt-get install -y \
  4. vim
  5. COPY ./default.conf /etc/nginx/conf.d/default.conf
  6. COPY ./bashrc /root/.bashrc
  7. COPY ./inputrc /root/.inputrc