1
0
mirror of https://github.com/fumiama/CMoe-Counter.git synced 2026-06-12 06:00:29 +08:00

add dockerfile

This commit is contained in:
源文雨
2022-05-20 14:52:19 +08:00
parent 6c21890f63
commit e0a8186cb8
2 changed files with 112 additions and 0 deletions

47
Dockerfile Normal file
View File

@@ -0,0 +1,47 @@
FROM alpine:latest AS builder
RUN apk update && apk add gcc g++ cmake automake autoconf libtool make linux-headers git
WORKDIR /build
RUN git clone --depth=1 https://github.com/fumiama/simple-protobuf.git \
&& cd simple-protobuf \
&& mkdir build \
&& cd build \
&& cmake .. \
&& make install
RUN rm -rf *
RUN git clone --depth=1 https://github.com/fumiama/simple-http-server.git \
&& cd simple-http-server \
&& mkdir build \
&& cd build \
&& cmake .. \
&& make install
RUN rm -rf *
COPY ./*.c .
COPY ./*.h .
COPY ./CMakeLists.txt .
RUN mkdir build \
&& cd build \
&& cmake .. \
&& make install
FROM alpine:latest
COPY --from=builder /usr/local/bin/simple-http-server /usr/bin/simple-http-server
COPY --from=builder /usr/local/bin/cmoe /data/cmoe
COPY --from=builder /usr/local/lib/libspb.so /usr/local/lib/libspb.so
RUN chmod +x /usr/bin/simple-http-server
RUN chmod +x /data/cmoe
WORKDIR /data
COPY ./assets/favicon.ico .
COPY ./assets/index.html .
COPY ./assets/style.css .
ENTRYPOINT [ "/usr/bin/simple-http-server" ]