Skip to content

Commit

Permalink
Use dev-requirements.txt in the Dockerfile (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
coretl authored Jun 21, 2024
2 parents 27fc1de + b5f565c commit 516ffaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/Dockerfile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ENV PATH=/venv/bin:$PATH
FROM developer as build
COPY . /context
WORKDIR /context
RUN pip install .
RUN touch dev-requirements.txt && pip install -c dev-requirements.txt .

# The runtime stage copies the built venv into a slim runtime container
FROM python:${PYTHON_VERSION}-slim as runtime
Expand Down

0 comments on commit 516ffaa

Please sign in to comment.