Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions template/Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ ENV PATH=/venv/bin:$PATH{% if docker %}
# The build stage installs the context into the venv
FROM developer AS build
# Requires buildkit 0.17.0
COPY --chmod=o+wrX . /workspaces/{{ repo_name }}
COPY . /workspaces/{{ repo_name }}
WORKDIR /workspaces/{{ repo_name }}
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 .

{% if docker_debug %}
FROM build AS debug
Expand Down