- Removed README.md and LICENSE from .dockerignore for inclusion in Docker image. - Introduced a new docker-compose.yml file to define the application services and their configurations. - Enhanced Dockerfile with build arguments and detailed image metadata for better documentation and version tracking.
29 lines
327 B
Plaintext
29 lines
327 B
Plaintext
.git
|
|
.gitignore
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Go
|
|
vendor/
|
|
software-station
|
|
*.out
|
|
*.test
|
|
coverage.out
|
|
|
|
# Frontend
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/build/
|
|
frontend/.svelte-kit/
|
|
|
|
# Application Data
|
|
.cache/
|
|
.salt
|
|
hashes.json
|
|
test_software.txt
|
|
test_hashes.json
|
|
test-hashes.json
|
|
test_updater.txt
|
|
test_handlers_hashes.json
|
|
|