5 lines
108 B
Docker
5 lines
108 B
Docker
FROM debian:bullseye
|
|
RUN apt update
|
|
RUN apt install nginx -y
|
|
RUN apt install vim -y
|
|
RUN apt install curl -y |