diff --git a/README.md b/README.md index ba260d5..8ed0b40 100644 --- a/README.md +++ b/README.md @@ -62,20 +62,3 @@ python ./build.py ``` Récupérer le résultat dans le dossier `./dist` - -## Docker -[! TODO: Change process] -Pour faciliter le déploiement, une image docker est fournie. Pour créer l'image : `docker build -t centralisation .` et créer le conteneur `docker run -it -d -p 80:80 centralisation`. - -Un fichier `docker-compose.yml` peut être édité : - -```yml -version: "3" -services: - web: - image: centralisation - container_name: centralisation - restart: unless-stopped - ports: - - "80:80" -``` diff --git a/build.py b/build.py index 66acbbc..3cb8e5e 100644 --- a/build.py +++ b/build.py @@ -24,9 +24,4 @@ file.write(page_render) # Copy the assets directory -shutil.copytree("./src/assets", "./dist/assets") - -#??? -json = json.dumps(data, ensure_ascii=False) -with open("./dist/links.json", "w", encoding="utf8") as links_json_file: - links_json_file.write(json) +shutil.copytree("./src/assets", "./dist/assets") \ No newline at end of file