-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
41 lines (31 loc) · 1010 Bytes
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ------------------------------------------------------------------------------
# Ignore everything by default.
# ------------------------------------------------------------------------------
*
# ------------------------------------------------------------------------------
# Explicitly define directories and files to pass into docker.
# ------------------------------------------------------------------------------
# Project files
!/README.md
!/LICENSE
# Source code and scripts
!/galaxy
# Deployments
!/deploy
# Project configuration and Poetry
!/pyproject.toml
!/poetry.lock
!/poetry.toml
# Python version
!/.python-version
# Makefile and other tools
!/Makefile
# ------------------------------------------------------------------------------
# Explicit ignore directories and files to make sure they are not included in the docker image.
# ------------------------------------------------------------------------------
# Git directories
.git/
# Environment files
.env*
# Caches
__pycache__/