diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4d22d7e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY dist/ /usr/share/nginx/html/ +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca5e0af --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +My personal about website in Rust with the Yew Framework. + +Buld with: docker compose up -d --build \ No newline at end of file diff --git a/dist/index.html b/dist/index.html index 8188648..3a6dadd 100644 --- a/dist/index.html +++ b/dist/index.html @@ -7,7 +7,7 @@ - +
diff --git a/dist/malxte_de-a1fcba309c628f85.js b/dist/malxte_de-a1fcba309c628f85.js index 9122576..e2165e2 100644 --- a/dist/malxte_de-a1fcba309c628f85.js +++ b/dist/malxte_de-a1fcba309c628f85.js @@ -239,14 +239,14 @@ if (!('encodeInto' in cachedTextEncoder)) { let WASM_VECTOR_LEN = 0; -function wasm_bindgen__convert__closures_____invoke__h41150144d570379a(arg0, arg1, arg2) { - wasm.wasm_bindgen__convert__closures_____invoke__h41150144d570379a(arg0, arg1, arg2); -} - function wasm_bindgen__convert__closures________invoke__hb54cc54debfd07fa(arg0, arg1, arg2) { wasm.wasm_bindgen__convert__closures________invoke__hb54cc54debfd07fa(arg0, arg1, arg2); } +function wasm_bindgen__convert__closures_____invoke__h41150144d570379a(arg0, arg1, arg2) { + wasm.wasm_bindgen__convert__closures_____invoke__h41150144d570379a(arg0, arg1, arg2); +} + function wasm_bindgen__convert__closures_____invoke__h1f2eaa716dfe757f(arg0, arg1) { const ret = wasm.wasm_bindgen__convert__closures_____invoke__h1f2eaa716dfe757f(arg0, arg1); return ret !== 0; diff --git a/dist/malxte_de-a1fcba309c628f85_bg.wasm b/dist/malxte_de-a1fcba309c628f85_bg.wasm index 043af26..305b9ac 100644 Binary files a/dist/malxte_de-a1fcba309c628f85_bg.wasm and b/dist/malxte_de-a1fcba309c628f85_bg.wasm differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c335f9e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + malxte_de: + build: . + ports: + - "1324:80" + restart: "unless-stopped" + container_name: malxte_de