Skip to content

Commit 50003e7

Browse files
committed
wrong pip command
1 parent bf8ceab commit 50003e7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Containerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ COPY pcileech.py .
6666
COPY pyproject.toml setup.py setup.cfg ./
6767

6868
# Install the package itself so `from pcileechfwgenerator.xxx` imports work
69-
RUN pip3 install --no-cache-dir -e . || echo "Warning: Editable install failed, trying regular install" && pip3 install --no-cache-dir .
69+
# Note: Use regular install (not editable) since source is copied, not mounted
70+
RUN pip3 install --no-cache-dir .
7071

7172
# Copy voltcyclone-fpga from build stage (cloned during build)
7273
COPY --from=build /src/lib/voltcyclone-fpga ./lib/voltcyclone-fpga

0 commit comments

Comments
 (0)