Files
Paradise/.dockerignore
Patrick MeadeandGitHub 677e13353f Adds Dockerfile and Utility Scripts (#31446)
* Adds Dockerfile and Utility Scripts

* Remove RUSTG_VERSION from _build_dependencies.sh

* Moved documentation to references, added link to mkdocs.yml

* Update references, finish documentation, fix typos

* Fixed small error in docs and scripts

* Add CI action to build and publish game server images

* Bump CI action to compatible Ubuntu runner

* Fix up the base image for NanoMap rendering

* Remove commented out base for nanomap-build stage

* Removed default values from Dockerfile build arguments

Sanitized default arguments in Dockerfile
Updated CI workflow to use _build_dependencies.sh to build the Docker image
Added documentation on using --build-arg flags with the docker build command

* Modify caching for Docker builds in CI

* Add missing files to pacify Nanomap Renderer
2026-04-11 22:13:20 +00:00

74 lines
1.2 KiB
Plaintext

# .dockerignore
# -------------------------
# Git & VCS
# -------------------------
.git
.gitignore
.gitattributes
# -------------------------
# Editor / OS junk
# -------------------------
*.swp
*.swo
*~
.DS_Store
Thumbs.db
.idea
.vscode
# -------------------------
# Build artifacts (BYOND)
# -------------------------
*.dmb
*.rsc
*.log
# -------------------------
# TGUI build artifacts
# (we rebuild these in Docker)
# -------------------------
tgui/node_modules
tgui/public/tgui.bundle.js
# -------------------------
# Rust build artifacts
# -------------------------
rust/target
**/target
# -------------------------
# Docker / CI artifacts
# -------------------------
docker-compose.yml
docker-compose.*.yml
# -------------------------
# SQL / runtime data
# (keep schemas, drop local data)
# -------------------------
SQL/*.db
SQL/*.sqlite
# -------------------------
# Secrets (never bake these)
# -------------------------
secret/*
!secret/.gitkeep
# -------------------------
# Local tooling outputs
# -------------------------
SpacemanDMM.log
odlint.log
# -------------------------
# BYOND Windows-only binaries
# (not used in Linux containers)
# -------------------------
dreamchecker.exe
prof.dll
rustlibs.dll
rustlibs_prod.dll