Skip to content

Commit 0e2116f

Browse files
committed
Fix Dockerfile
1 parent b5670e8 commit 0e2116f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docker/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,13 @@ RUN /workspace/depot_tools/ensure_bootstrap
4242
# Build standard DevTools first
4343
RUN npm run build
4444

45-
# For development/testing - use current branch with automated mode changes
46-
# In production, this would fetch from Browser Operator upstream
47-
# RUN git remote add upstream https://github.com/BrowserOperator/browser-operator-core.git
48-
# RUN git fetch upstream
49-
# RUN git checkout upstream/main
45+
# Add Browser Operator fork and switch to it
46+
RUN git remote add upstream https://github.com/BrowserOperator/browser-operator-core.git
47+
RUN git fetch upstream
48+
RUN git checkout upstream/main
5049

5150
# Allow configurable automated mode
52-
ARG AUTOMATED_MODE=true
51+
ARG AUTOMATED_MODE=false
5352

5453
# Set build-time flags based on Docker arg
5554
RUN if [ "$AUTOMATED_MODE" = "true" ]; then \

0 commit comments

Comments
 (0)