🏗️」 wip(docker): added Dockerfile

This commit is contained in:
2025-01-21 14:25:01 +01:00
parent bc68e88b05
commit 315d8f3428

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM alpine:3.21
ADD ./ /build
RUN apk add --no-cache clang make \
&& cd /build \
&& make \
&& chmod +x webserv \
&& cp webserv /webserv
RUN [ "/webserv", "$WEBSERV_CONF"]