docker-erable/Docker/nginx/Dockerfile

9 lines
189 B
Docker
Raw Normal View History

2023-11-19 11:36:05 +01:00
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
2024-10-23 22:28:39 +02:00
COPY ./inputrc /root/.inputrc