Skip to content

Commit a0aa987

Browse files
committed
Fix ARM64 build: copy lighttpd config directly to conf-enabled
The lighttpd-enable-mod command doesn't exist in the ARM64 base image. Instead of using the helper script, copy the proxy configuration directly to /etc/lighttpd/conf-enabled/90-proxy.conf.
1 parent bd57be8 commit a0aa987

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Dockerfile.tar1090

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ RUN apt-get update && apt-get install -y \
1010

1111
COPY proxy/server.js /opt/proxy/server.js
1212

13-
COPY docker/lighttpd-proxy.conf /etc/lighttpd/conf-available/90-proxy.conf
14-
RUN lighttpd-enable-mod proxy
13+
COPY docker/lighttpd-proxy.conf /etc/lighttpd/conf-enabled/90-proxy.conf
1514

1615
COPY docker/entrypoint.sh /opt/entrypoint.sh
1716
RUN chmod +x /opt/entrypoint.sh

0 commit comments

Comments
 (0)