Skip to content

Commit

Permalink
feat(graph): adds Dockerfile and docker-compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
alber70g committed Nov 20, 2024
1 parent 34c7fe4 commit 4236a90
Show file tree
Hide file tree
Showing 11 changed files with 1,170 additions and 305 deletions.
112 changes: 112 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
.git

##################################################
### Below is the same as .gitignore
##################################################

# build artefacts
packages/*/*/lib
packages/*/*/lib-commonjs
packages/*/*/.parcel-cache
packages/*/*/dist
packages/*/*/coverage

# lock-files that don't belong here
package-lock.json
yarn.lock
npm-shrinkwrap.json
shrinkwrap.json

# Metadata
tsdoc-metadata.json

# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables files
.env
# direnv
.envrc

# next.js build output
.next

# OS X temporary files
.DS_Store

packages/*/*/temp
# Heft
.heft

# Pact command history
.pact-history

# Intelij idea files
.idea
.idea/*

# Turborepo
.turbo

# Storybook static build
storybook-static

temp

#Playwright
/packages/*/*/test-results
/packages/*/*/playwright-report
/packages/*/*/blob-report
# cache-sh
.cache-sh

# parcel
.parcel-cache
Loading

0 comments on commit 4236a90

Please sign in to comment.