You've already forked cpp-httplib
Added example/Dockerfile.hello
This commit is contained in:
12
example/Dockerfile.hello
Normal file
12
example/Dockerfile.hello
Normal file
@ -0,0 +1,12 @@
|
||||
From alpine as builder
|
||||
WORKDIR /src/example
|
||||
RUN apk add g++ make openssl-dev zlib-dev brotli-dev
|
||||
COPY ./httplib.h /src
|
||||
COPY ./example/hello.cc /src/example
|
||||
COPY ./example/Makefile /src/example
|
||||
RUN make hello
|
||||
|
||||
From alpine
|
||||
RUN apk --no-cache add brotli libstdc++
|
||||
COPY --from=builder /src/example/hello /bin/hello
|
||||
CMD ["/bin/hello"]
|
Reference in New Issue
Block a user