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
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ RUN npm install --omit=dev --omit=optional --ignore-scripts && \
# Copy application files
COPY index.js ./
COPY demo.js ./
COPY realitycsems-integration.js ./
COPY realitycsems-cli.js ./
COPY anonymous-package.js ./
COPY optimization-system.js ./

# Copy lib directory with all modules
COPY lib/ ./lib/

# Copy supporting directories
COPY .realitycsems/ ./.realitycsems/
COPY .anonymouscalc/ ./.anonymouscalc/
COPY .baes/ ./.baes/
COPY .coolems/ ./.coolems/

# Copy documentation
COPY README.md ./
Expand All @@ -41,6 +54,8 @@ COPY YOUNG_FIELD.md ./
COPY YOSHIS_SECRET_BAE_MATH.md ./
COPY WHITEPAPER_YOUNG_SITUATION.md ./
COPY IMPLEMENTATION_SUMMARY.md ./
COPY REALITYCSEMS.md ./
COPY ANONYMOUS_PACKAGE.md ./

# Copy configuration files needed for runtime
COPY .realtime .online .necessaries ./
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,15 @@
"realitycsems-integration.js",
"realitycsems-cli.js",
"anonymous-package.js",
"optimization-system.js",
"lib/",
".realitycsems/",
".anonymouscalc/",
".baes/",
".coolems/",
"README.md",
"LICENSE",
"PACKAGE.md",
"REALITYCSEMS.md",
"ANONYMOUS_PACKAGE.md",
"YOUNG_SITUATION.md",
Expand Down