We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace29b9 commit 2aa1177Copy full SHA for 2aa1177
template/Dockerfile.jinja
@@ -15,9 +15,9 @@ ENV PATH=/venv/bin:$PATH{% if docker %}
15
# The build stage installs the context into the venv
16
FROM developer AS build
17
# Requires buildkit 0.17.0
18
-COPY --chmod=o+wrX . /workspaces/{{ repo_name }}
+COPY . /workspaces/{{ repo_name }}
19
WORKDIR /workspaces/{{ repo_name }}
20
-RUN touch dev-requirements.txt && pip install -c dev-requirements.txt .
+RUN chmod o+wrX . && touch dev-requirements.txt && pip install -c dev-requirements.txt .
21
22
{% if docker_debug %}
23
FROM build AS debug
0 commit comments