Skip to content

Commit 1adadec

Browse files
committed
more tweaks
1 parent c6fe247 commit 1adadec

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"name": "Module",
1717
"type": "python",
1818
"request": "launch",
19-
"module": "{{cookiecutter.project_slug}}",
19+
"module": "{{project_name}}",
2020
"console": "internalConsole",
2121
"internalConsoleOptions": "openOnSessionStart",
2222
"justMyCode": false,

src/{% if docker %}Dockerfile{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ WORKDIR /app
55
FROM base AS builder
66

77
# Install poetry
8-
RUN pip install --no-cache-dir poetry~=1.1
9-
RUN poetry config virtualenvs.in-project true
8+
RUN pip install --no-cache-dir poetry~=1.1 \
9+
&& poetry config virtualenvs.in-project true
1010

1111
# Install deps
1212
COPY pyproject.toml poetry.lock ./

0 commit comments

Comments
 (0)