diff --git a/docker_web/Dockerfile b/docker_web/Dockerfile new file mode 100644 index 0000000..e85ba59 --- /dev/null +++ b/docker_web/Dockerfile @@ -0,0 +1,10 @@ +FROM nginx:1.29.4 + + +WORKDIR /usr/share/nginx/html + +COPY . . + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/docker_web/index.html b/docker_web/index.html new file mode 100644 index 0000000..4879eed --- /dev/null +++ b/docker_web/index.html @@ -0,0 +1,219 @@ + + + + + + Cartoon Weather Dashboard + + + +

CARTOON WEATHER DASHBOARD

+
+ +
+ + + + + \ No newline at end of file diff --git a/ubuntu-nettools/Dockerfile b/ubuntu-nettools/Dockerfile new file mode 100644 index 0000000..332e241 --- /dev/null +++ b/ubuntu-nettools/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:24.04 + +RUN apt-get update && \ + apt-get install -y net-tools \ + nano \ + vim \ + ca-certificates \ + iputils-ping \ + iproute2 \ + curl \ + wget && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +RUN useradd -ms /bin/bash testuser + +USER testuser + +WORKDIR /home/testuser + +CMD ["/bin/bash"] + +## Pentru build: docker build -t ubuntu-nettools:0.0.1 . \ No newline at end of file