commit 613dc0e9d069c039e74b2357b55bdf0c9e788728 Author: lucas.mathieu Date: Wed Nov 26 09:50:45 2025 +0000 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..688165a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM nginx:alpine + +WORKDIR /app + +COPY ./dist . + +COPY ./nginx.conf /etc/nginx/nginx.conf \ No newline at end of file diff --git a/dist/images/mac-button.png b/dist/images/mac-button.png new file mode 100644 index 0000000..bc61e05 Binary files /dev/null and b/dist/images/mac-button.png differ diff --git a/dist/images/play-flingue.png b/dist/images/play-flingue.png new file mode 100644 index 0000000..53d06c1 Binary files /dev/null and b/dist/images/play-flingue.png differ diff --git a/dist/images/windows-button.png b/dist/images/windows-button.png new file mode 100644 index 0000000..3b8a157 Binary files /dev/null and b/dist/images/windows-button.png differ diff --git a/dist/index.html b/dist/index.html new file mode 100644 index 0000000..4d058e2 --- /dev/null +++ b/dist/index.html @@ -0,0 +1,20 @@ + + + + + Play Flingue + + + +
+ +
+
+ +
+
+ + +
+ + \ No newline at end of file diff --git a/dist/styles.css b/dist/styles.css new file mode 100644 index 0000000..48d0c92 --- /dev/null +++ b/dist/styles.css @@ -0,0 +1,10 @@ +body { + background-color: black; + color: white; + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-around; + height: 100vh; + margin: 0; +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2a49766 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +services: + flingue-website: + image: lucaasmth/flingue-website + build: + context: . + dockerfile: Dockerfile + restart: unless-stopped + +networks: + default: + name: scoobydoo + external: true diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..624417e --- /dev/null +++ b/nginx.conf @@ -0,0 +1,19 @@ +events {} +http { + include mime.types; + sendfile on; + + server { + listen 80; + listen [::]:80; + + resolver 127.0.0.1; + autoindex off; + + server_name _; + server_tokens off; + + root /app; + gzip_static on; + } +} \ No newline at end of file