mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-19 22:54:03 -05:00
13 lines
330 B
Docker
Executable File
13 lines
330 B
Docker
Executable File
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"]
|