10 lines
190 B
Docker
10 lines
190 B
Docker
|
FROM nginx:latest
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y \
|
||
|
vim
|
||
|
|
||
|
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
||
|
COPY ./bashrc /root/.bashrc
|
||
|
COPY ./inputrc /root/.inputrc
|