Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
.gitattributes
.gitignore
Dockerfile
README.md
CODE_OF_CONDUCT.md
bin/benchmark.sh
bin/benchmark-in-docker.sh
bin/run-in-docker.sh
bin/run-tests-in-docker.sh
bin/run-tests.sh
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,14 @@ RUN cd basis/io/encodings && rm -rf \
# at least basis/binary-search at runtime.
RUN find . -name '*-docs.factor' -delete

# Drop the Unicode source data tables. These are parsed only during bootstrap to
# build the unicode tables that are baked into factor.image; they are not read at
# runtime.
RUN rm -f basis/unicode/UnicodeData.txt \
basis/unicode/allkeys.txt

RUN strip factor


FROM ${WOLFI_BASE}

Expand Down
Loading