0

I'm attempting to install luarocks on my envoy dockerfile, but it gets stuck at the following stage.

My Dockerfile-

FROM envoyproxy/envoy:v1.25.1

RUN apt-get -y update && apt-get -y install lua5.2 liblua5.2

RUN git clone git://github.com/keplerproject/luarocks.git && cd luarocks && ./configure && make build &&  make install

RUN luarocks install lua-cjson

In multiple hours, the installation process became stuck at "the time zones in which they are located."

=> [2/4] RUN apt-get -y update && apt-get -y install lua5.2 liblua5.2                                                                                                                 695.3s
 => => # questions will narrow this down by presenting a list of cities, representing
 => => # the time zones in which they are located.
 => => #   1. Africa      4. Australia  7. Atlantic  10. Pacific  13. Etc
 => => #   2. America     5. Arctic     8. Europe    11. SystemV
 => => #   3. Antarctica  6. Asia       9. Indian    12. US
 => => # Geographic area:

I also tried using below commands but same result -

FROM    envoyproxy/envoy-dev:6abcebc93f3d0616ba38ad9c5fec97dfc9c32645

RUN     apt update && apt install -y \
            luarocks

RUN    luarocks install lua-cjson
gaurav agnihotri
  • 259
  • 1
  • 5
  • 14
  • Does this answer your question? [apt-get install tzdata noninteractive](https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive) – shingo Mar 17 '23 at 08:43

0 Answers0