Skip to content

Commit 3c3ee94

Browse files
committed
feat(docker): add Docker support for lit-auth-server and lit-login-server with updated Dockerfiles and README instructions; include .dockerignore for build optimization
1 parent 7780923 commit 3c3ee94

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.dockerignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# dependencies & artifacts
2+
node_modules
3+
**/node_modules
4+
dist
5+
**/dist
6+
tmp
7+
e2e/dist
8+
coverage
9+
10+
# vcs & editor
11+
.git
12+
.gitignore
13+
.vscode
14+
.idea
15+
16+
# env and secrets (mount or --env-file at runtime instead)
17+
**/.env*
18+
.env*
19+
20+
out
21+
**/out
22+
23+
# allow lit-auth-server build output for docker image
24+
!dist/apps/lit-auth-server/**
25+
!dist/apps/lit-auth-server
26+
27+
# allow lit-login-server build output for docker image
28+
!dist/apps/lit-login-server/**
29+
!dist/apps/lit-login-server

0 commit comments

Comments
 (0)