Skip to content

Commit b763304

Browse files
committed
Update files and proper paths
1 parent 96888db commit b763304

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

.dockerignore

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
1-
**/.venv/
2-
**/dist/
3-
.git/
4-
.env
5-
Makefile
1+
**/__pycache__
2+
**/.venv
3+
**/.classpath
4+
**/.dockerignore
5+
**/.env
6+
**/.git
7+
**/.gitignore
8+
**/.project
9+
**/.settings
10+
**/.toolstarget
11+
**/.vs
12+
**/.vscode
13+
**/*.*proj.user
14+
**/*.dbmdl
15+
**/*.jfm
16+
**/bin
17+
**/charts
18+
**/docker-compose*
19+
**/compose*
20+
**/Dockerfile*
21+
**/node_modules
22+
**/npm-debug.log
23+
**/obj
24+
**/secrets.dev.yaml
25+
**/values.dev.yaml
26+
LICENSE
27+
README.md

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ bash: dev-container
2121
@echo "Start and enter development container"
2222
@echo "===================================================================="
2323
@docker run --env-file=.env --rm -it \
24-
--volume $(shell pwd)/code:/home/python/code \
25-
--workdir /home/python/code \
24+
--volume $(shell pwd)/app:/home/python/app \
25+
--workdir /home/python/app \
2626
template/app:dev \
2727
/bin/bash
2828

0 commit comments

Comments
 (0)