Simplify and improve .dockerignore. NFC. (#934)

This commit is contained in:
Kleis Auke Wolthuizen
2021-11-17 20:44:38 +01:00
committed by GitHub
parent eac57d992a
commit d8a1fd7099
2 changed files with 17 additions and 18 deletions

View File

@@ -1,21 +1,20 @@
# Ignore all subdirectories # Ignore everything
*/* *
# Allow to run the test script inside the Docker container # Allow to run the test script inside the Docker container
!/docker/test_dockerimage.sh !/docker/test_dockerimage.sh
# Ignore unnecessary files inside top-level directory # Allow license file
*.bat !LICENSE
*.csh
*.fish # Allow necessary build files in top-level directory
*.ps1 !emscripten-releases-tags.json
*.pyc !emsdk
.emscripten !emsdk.py
.emscripten.old !emsdk_env.sh
.emscripten_cache !emsdk_manifest.json
.emscripten_cache__last_clear
.emscripten_sanity # Allow files required to install legacy versions
.emscripten_sanity_wasm !legacy-binaryen-tags.txt
.flake8 !legacy-emscripten-tags.txt
emscripten-releases-tot.txt !llvm-tags-64bit.txt
README.md

View File

@@ -3,7 +3,7 @@
This Dockerfile builds a self-contained version of Emscripten SDK that enables Emscripten to be used without any This Dockerfile builds a self-contained version of Emscripten SDK that enables Emscripten to be used without any
other installation on the host system. other installation on the host system.
It is published at https://hub.docker.com/u/emscripten/emsdk It is published at https://hub.docker.com/r/emscripten/emsdk.
### Usage ### Usage