Skip to content

Commit

Permalink
fix docs dir removal
Browse files Browse the repository at this point in the history
  • Loading branch information
cheempz committed Sep 5, 2024
1 parent 6c86bc6 commit afe2cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lambda/otel/Dockerfile_3_2
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN export gem_file=$(cat gem_file.txt) && \
bundle update; \
fi

RUN rm /build/layer/ruby/ruby/3.2.0/cache/* && rm /build/layer/ruby/ruby/3.2.0/doc/*
RUN rm /build/layer/ruby/ruby/3.2.0/cache/* && rm -rf /build/layer/ruby/ruby/3.2.0/doc/*

WORKDIR /build/layer/ruby/ruby
RUN zip -qr gems-3.2.0.zip 3.2.0/
Expand Down
2 changes: 1 addition & 1 deletion lambda/otel/Dockerfile_3_3
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN export gem_file=$(cat gem_file.txt) && \
bundle update; \
fi

RUN rm /build/layer/ruby/ruby/3.3.0/cache/* && rm /build/layer/ruby/ruby/3.3.0/doc/*
RUN rm /build/layer/ruby/ruby/3.3.0/cache/* && rm -rf /build/layer/ruby/ruby/3.3.0/doc/*

WORKDIR /build/layer/ruby/ruby
RUN zip -qr gems-3.3.0.zip 3.3.0/
Expand Down

0 comments on commit afe2cfd

Please sign in to comment.