alamb opened a new issue, #134:
URL: https://github.com/apache/parquet-site/issues/134
When I tried to run hugo in the docker container per the instructions, I get
this error:
```shell
root@5204cc599a9b:/parquet-site# hugo serve
hugo: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found
(required by hugo)
hugo: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found
(required by hugo)
hugo: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found
(required by hugo)
hugo: /usr/lib/aarch64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29'
not found (required by hugo)
```
I had to upgrade the version of debian used and then it all worked great
```diff
diff --git a/Dockerfile b/Dockerfile
index 3c456a1..ba1f81b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,7 +25,7 @@
# docker run -it -v `pwd`:/parquet-site -p 1313:1313 parquet-site
#
# Now you can run npm and hugo commands in the container
-FROM debian:bullseye-slim
+FROM debian:bookworm-slim
# run docker container mounting the current directory to /parquet-site and
exposing port 1313
@@ -47,5 +47,3 @@ RUN wget -O -
https://nodejs.org/dist/v20.13.1/node-v20.13.1-linux-arm64.tar.xz
# setup path to find binaries
ENV
PATH=/go/bin:/node-v20.13.1-linux-arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-
-
```
_Originally posted by @alamb in
https://github.com/apache/parquet-site/pull/132#pullrequestreview-3452896617_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]