🏗️」 wip: passed _log to a global pointer

This commit is contained in:
2025-04-18 10:09:46 +02:00
parent 0b77d7b80c
commit a2cf80bfde
12 changed files with 52 additions and 35 deletions

View File

@ -1,11 +1,13 @@
FROM alpine:3.21
FROM alpine:3.21
COPY ./ /build
COPY ./ /build
RUN apk add --no-cache clang make \
&& cd /build \
&& make \
&& chmod +x webserv \
&& cp webserv /bin/webserv
RUN apk add --no-cache clang make \
&& cd /build \
&& make \
&& chmod +x webserv \
&& cp webserv /bin/webserv
RUN [ "/bin/webserv", "$WEBSERV-CONF"]
STOPSIGNAL SIGINT
RUN [ "/bin/webserv", "$WEBSERV-CONF"]