We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f953f1 commit 2dcb2b2Copy full SHA for 2dcb2b2
2 files changed
.dockerignore
@@ -0,0 +1,4 @@
1
+build
2
+.git
3
+Dockerfile
4
+
Dockerfile.mistserver
@@ -0,0 +1,15 @@
+FROM alpine AS mist_build
+RUN apk add --update git patch meson ninja gcc g++ linux-headers
+ADD . /src/
5
+RUN mkdir /build/; cd /build; meson setup /src -Dlibrist:default_library=static -Dmbedtls:default_library=static -DDEBUG=3 -Dstrip=true; ninja install
6
7
+FROM alpine
8
+RUN apk add libstdc++
9
+COPY --from=mist_build /usr/local/ /usr/local/
10
11
+LABEL org.opencontainers.image.authors="Jaron Viëtor <jaron.vietor@ddvtech.com>"
12
+EXPOSE 4242 8080 1935 5554
13
+ENTRYPOINT ["MistController"]
14
+HEALTHCHECK CMD ["MistUtilHealth"]
15
0 commit comments