Skip to content

Commit

Permalink
add dockerignore (#26075)
Browse files Browse the repository at this point in the history
## Summary & Motivation

This lets us use the dagster repo as a docker context, without having to transfer a lot of cruft through docker that would then get ignored anyway

## How I Tested These Changes

Ran a docker build locally with /code/dagster as the context, and verified that before this change the context was unmanegeable (several GB) and after it was basically immediate
  • Loading branch information
neilfulwiler authored Nov 21, 2024
1 parent 479bd62 commit 6898a4d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.git/
**/.tox/
**/.yarn/
**/__pycache__/
**/*.egg-info/
**/node_modules/
**/*.pyc
**/.next/
**/venv/

0 comments on commit 6898a4d

Please sign in to comment.