Skip to content

Commit

Permalink
Add COPY to .dockerfile and requirements to .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenkaF committed Dec 10, 2021
1 parent c206280 commit 9c26ee2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
!ci/**
!c_glib/Gemfile
!dev/archery/setup.py
!docs/requirements*.txt
!python/requirements*.txt
!python/manylinux1/**
!python/manylinux2010/**
Expand Down
3 changes: 2 additions & 1 deletion ci/docker/linux-apt-docs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ RUN wget -q -O - https://deb.nodesource.com/setup_${node}.x | bash - && \
rm -rf /var/lib/apt/lists/* && \
npm install -g yarn

RUN pip install -r docs/requirements.txt meson
COPY docs/requirements.txt /arrow/docs/
RUN pip install -r arrow/docs/requirements.txt meson

COPY c_glib/Gemfile /arrow/c_glib/
RUN gem install --no-document bundler && \
Expand Down

0 comments on commit 9c26ee2

Please sign in to comment.