From 019512a670ccfa87073587beadfbc1ac6af8d930 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sun, 2 Apr 2023 08:48:50 -0400 Subject: [PATCH] Add dockerfile+build --- .gitea/workflows/docker-build.yml | 17 +++++++++++++++++ Dockerfile | 2 ++ {.well-known => html/.well-known}/security.txt | 0 404-error.html => html/404-error.html | 0 README.md => html/README.md | 0 admin.html => html/admin.html | 0 {assets => html/assets}/apple-touch-icon.png | Bin {assets => html/assets}/favicon.ico | Bin {assets => html/assets}/icon-192x192.png | Bin {assets => html/assets}/icon-256x256.png | Bin {assets => html/assets}/icon-384x384.png | Bin {assets => html/assets}/icon-512x512.png | Bin {assets => html/assets}/img/error.png | Bin {assets => html/assets}/img/profil.avif | Bin {assets => html/assets}/img/profil_about.avif | Bin .../assets}/img/projet/Homelab-1.avif | Bin .../assets}/img/projet/Homelab-2.avif | Bin .../assets}/img/projet/Homelab-3.avif | Bin .../assets}/img/projet/Homelab-4.avif | Bin .../assets}/img/projet/Python-game-1.avif | Bin .../assets}/img/projet/Python-game-2.avif | Bin .../assets}/img/projet/Site-d3vyce-1.avif | Bin .../assets}/img/projet/Site-d3vyce-2.avif | Bin .../assets}/img/projet/Site-d3vyce-3.avif | Bin .../assets}/img/projet/Site-d3vyce-4.avif | Bin .../assets}/img/projet/Writeup-ctf-1.avif | Bin .../assets}/img/projet/Writeup-ctf-2.avif | Bin .../assets}/img/projet/Writeup-ctf-3.avif | Bin {css => html/css}/mouse.css | 0 {css => html/css}/reset.css | 0 {css => html/css}/social.css | 0 {css => html/css}/style.css | 0 {css => html/css}/timeline.css | 0 index.html => html/index.html | 0 {js => html/js}/admin.js | 0 {js => html/js}/script.js | 0 manifest.json => html/manifest.json | 0 pgp-key.txt => html/pgp-key.txt | 0 robots.txt => html/robots.txt | 0 social.html => html/social.html | 0 40 files changed, 19 insertions(+) create mode 100644 .gitea/workflows/docker-build.yml create mode 100644 Dockerfile rename {.well-known => html/.well-known}/security.txt (100%) rename 404-error.html => html/404-error.html (100%) rename README.md => html/README.md (100%) rename admin.html => html/admin.html (100%) rename {assets => html/assets}/apple-touch-icon.png (100%) rename {assets => html/assets}/favicon.ico (100%) rename {assets => html/assets}/icon-192x192.png (100%) rename {assets => html/assets}/icon-256x256.png (100%) rename {assets => html/assets}/icon-384x384.png (100%) rename {assets => html/assets}/icon-512x512.png (100%) rename {assets => html/assets}/img/error.png (100%) rename {assets => html/assets}/img/profil.avif (100%) rename {assets => html/assets}/img/profil_about.avif (100%) rename {assets => html/assets}/img/projet/Homelab-1.avif (100%) rename {assets => html/assets}/img/projet/Homelab-2.avif (100%) rename {assets => html/assets}/img/projet/Homelab-3.avif (100%) rename {assets => html/assets}/img/projet/Homelab-4.avif (100%) rename {assets => html/assets}/img/projet/Python-game-1.avif (100%) rename {assets => html/assets}/img/projet/Python-game-2.avif (100%) rename {assets => html/assets}/img/projet/Site-d3vyce-1.avif (100%) rename {assets => html/assets}/img/projet/Site-d3vyce-2.avif (100%) rename {assets => html/assets}/img/projet/Site-d3vyce-3.avif (100%) rename {assets => html/assets}/img/projet/Site-d3vyce-4.avif (100%) rename {assets => html/assets}/img/projet/Writeup-ctf-1.avif (100%) rename {assets => html/assets}/img/projet/Writeup-ctf-2.avif (100%) rename {assets => html/assets}/img/projet/Writeup-ctf-3.avif (100%) rename {css => html/css}/mouse.css (100%) rename {css => html/css}/reset.css (100%) rename {css => html/css}/social.css (100%) rename {css => html/css}/style.css (100%) rename {css => html/css}/timeline.css (100%) rename index.html => html/index.html (100%) rename {js => html/js}/admin.js (100%) rename {js => html/js}/script.js (100%) rename manifest.json => html/manifest.json (100%) rename pgp-key.txt => html/pgp-key.txt (100%) rename robots.txt => html/robots.txt (100%) rename social.html => html/social.html (100%) diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml new file mode 100644 index 0000000..42360ef --- /dev/null +++ b/.gitea/workflows/docker-build.yml @@ -0,0 +1,17 @@ +name: Docker-build +on: [push] +jobs: + docker-build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up Python 3.11 + run: | + apt update + apt install -y docker.io + - name: Build/Push + run: | + docker build -t d3vyce.fr . + docker tag d3vyce.fr 10.0.0.3:5000/d3vyce + docker push 10.0.0.3:5000/d3vyce \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6130757 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,2 @@ +FROM nginx +COPY html/ /usr/share/nginx/html \ No newline at end of file diff --git a/.well-known/security.txt b/html/.well-known/security.txt similarity index 100% rename from .well-known/security.txt rename to html/.well-known/security.txt diff --git a/404-error.html b/html/404-error.html similarity index 100% rename from 404-error.html rename to html/404-error.html diff --git a/README.md b/html/README.md similarity index 100% rename from README.md rename to html/README.md diff --git a/admin.html b/html/admin.html similarity index 100% rename from admin.html rename to html/admin.html diff --git a/assets/apple-touch-icon.png b/html/assets/apple-touch-icon.png similarity index 100% rename from assets/apple-touch-icon.png rename to html/assets/apple-touch-icon.png diff --git a/assets/favicon.ico b/html/assets/favicon.ico similarity index 100% rename from assets/favicon.ico rename to html/assets/favicon.ico diff --git a/assets/icon-192x192.png b/html/assets/icon-192x192.png similarity index 100% rename from assets/icon-192x192.png rename to html/assets/icon-192x192.png diff --git a/assets/icon-256x256.png b/html/assets/icon-256x256.png similarity index 100% rename from assets/icon-256x256.png rename to html/assets/icon-256x256.png diff --git a/assets/icon-384x384.png b/html/assets/icon-384x384.png similarity index 100% rename from assets/icon-384x384.png rename to html/assets/icon-384x384.png diff --git a/assets/icon-512x512.png b/html/assets/icon-512x512.png similarity index 100% rename from assets/icon-512x512.png rename to html/assets/icon-512x512.png diff --git a/assets/img/error.png b/html/assets/img/error.png similarity index 100% rename from assets/img/error.png rename to html/assets/img/error.png diff --git a/assets/img/profil.avif b/html/assets/img/profil.avif similarity index 100% rename from assets/img/profil.avif rename to html/assets/img/profil.avif diff --git a/assets/img/profil_about.avif b/html/assets/img/profil_about.avif similarity index 100% rename from assets/img/profil_about.avif rename to html/assets/img/profil_about.avif diff --git a/assets/img/projet/Homelab-1.avif b/html/assets/img/projet/Homelab-1.avif similarity index 100% rename from assets/img/projet/Homelab-1.avif rename to html/assets/img/projet/Homelab-1.avif diff --git a/assets/img/projet/Homelab-2.avif b/html/assets/img/projet/Homelab-2.avif similarity index 100% rename from assets/img/projet/Homelab-2.avif rename to html/assets/img/projet/Homelab-2.avif diff --git a/assets/img/projet/Homelab-3.avif b/html/assets/img/projet/Homelab-3.avif similarity index 100% rename from assets/img/projet/Homelab-3.avif rename to html/assets/img/projet/Homelab-3.avif diff --git a/assets/img/projet/Homelab-4.avif b/html/assets/img/projet/Homelab-4.avif similarity index 100% rename from assets/img/projet/Homelab-4.avif rename to html/assets/img/projet/Homelab-4.avif diff --git a/assets/img/projet/Python-game-1.avif b/html/assets/img/projet/Python-game-1.avif similarity index 100% rename from assets/img/projet/Python-game-1.avif rename to html/assets/img/projet/Python-game-1.avif diff --git a/assets/img/projet/Python-game-2.avif b/html/assets/img/projet/Python-game-2.avif similarity index 100% rename from assets/img/projet/Python-game-2.avif rename to html/assets/img/projet/Python-game-2.avif diff --git a/assets/img/projet/Site-d3vyce-1.avif b/html/assets/img/projet/Site-d3vyce-1.avif similarity index 100% rename from assets/img/projet/Site-d3vyce-1.avif rename to html/assets/img/projet/Site-d3vyce-1.avif diff --git a/assets/img/projet/Site-d3vyce-2.avif b/html/assets/img/projet/Site-d3vyce-2.avif similarity index 100% rename from assets/img/projet/Site-d3vyce-2.avif rename to html/assets/img/projet/Site-d3vyce-2.avif diff --git a/assets/img/projet/Site-d3vyce-3.avif b/html/assets/img/projet/Site-d3vyce-3.avif similarity index 100% rename from assets/img/projet/Site-d3vyce-3.avif rename to html/assets/img/projet/Site-d3vyce-3.avif diff --git a/assets/img/projet/Site-d3vyce-4.avif b/html/assets/img/projet/Site-d3vyce-4.avif similarity index 100% rename from assets/img/projet/Site-d3vyce-4.avif rename to html/assets/img/projet/Site-d3vyce-4.avif diff --git a/assets/img/projet/Writeup-ctf-1.avif b/html/assets/img/projet/Writeup-ctf-1.avif similarity index 100% rename from assets/img/projet/Writeup-ctf-1.avif rename to html/assets/img/projet/Writeup-ctf-1.avif diff --git a/assets/img/projet/Writeup-ctf-2.avif b/html/assets/img/projet/Writeup-ctf-2.avif similarity index 100% rename from assets/img/projet/Writeup-ctf-2.avif rename to html/assets/img/projet/Writeup-ctf-2.avif diff --git a/assets/img/projet/Writeup-ctf-3.avif b/html/assets/img/projet/Writeup-ctf-3.avif similarity index 100% rename from assets/img/projet/Writeup-ctf-3.avif rename to html/assets/img/projet/Writeup-ctf-3.avif diff --git a/css/mouse.css b/html/css/mouse.css similarity index 100% rename from css/mouse.css rename to html/css/mouse.css diff --git a/css/reset.css b/html/css/reset.css similarity index 100% rename from css/reset.css rename to html/css/reset.css diff --git a/css/social.css b/html/css/social.css similarity index 100% rename from css/social.css rename to html/css/social.css diff --git a/css/style.css b/html/css/style.css similarity index 100% rename from css/style.css rename to html/css/style.css diff --git a/css/timeline.css b/html/css/timeline.css similarity index 100% rename from css/timeline.css rename to html/css/timeline.css diff --git a/index.html b/html/index.html similarity index 100% rename from index.html rename to html/index.html diff --git a/js/admin.js b/html/js/admin.js similarity index 100% rename from js/admin.js rename to html/js/admin.js diff --git a/js/script.js b/html/js/script.js similarity index 100% rename from js/script.js rename to html/js/script.js diff --git a/manifest.json b/html/manifest.json similarity index 100% rename from manifest.json rename to html/manifest.json diff --git a/pgp-key.txt b/html/pgp-key.txt similarity index 100% rename from pgp-key.txt rename to html/pgp-key.txt diff --git a/robots.txt b/html/robots.txt similarity index 100% rename from robots.txt rename to html/robots.txt diff --git a/social.html b/html/social.html similarity index 100% rename from social.html rename to html/social.html