Skip to content

Commit

Permalink
ci: updated base-image
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Nov 20, 2024
1 parent d407cc0 commit a781d12
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions docker/base-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ ENV DEBIAN_FRONTEND=noninteractive
# copy install scripts
COPY ./install /app/install

# install all dependencies in parallel
RUN bash /app/install/deps/deps.sh & \
bash /app/install/python/python.sh & \
bash /app/install/golang/golang.sh & \
bash /app/install/node/node.sh & \
wait
# install common dependencies
RUN bash /app/install/deps/deps.sh

# install python
RUN bash /app/install/python/python.sh

# install golang
RUN bash /app/install/golang/golang.sh

# install node
RUN bash /app/install/node/node.sh

# install chromedriver
RUN bash /app/install/chromedriver/chromedriver.sh
Expand Down

0 comments on commit a781d12

Please sign in to comment.