diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b439871 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +# Usamos la imagen oficial de Nginx, la versión estable y ligera +FROM nginx:stable-alpine + +# Borramos la web por defecto de Nginx +RUN rm -rf /usr/share/nginx/html/* + +# Copiamos tus archivos (html, js, css) a la carpeta de Nginx +COPY . /usr/share/nginx/html/ + +# Exponemos el puerto 80 +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/formacion.html b/formacion.html index ef56947..08edf28 100644 --- a/formacion.html +++ b/formacion.html @@ -48,23 +48,11 @@ Habilidades -<<<<<<< HEAD - - -