-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
52 lines (40 loc) · 1.3 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# start with the node image
FROM alpine:3.9 as builder
RUN set -ex \
&& apk update \
&& apk add \
autoconf \
pkgconf \
curl \
automake \
libtool \
make \
g++ \
build-base \
gcc \
zlib-dev \
cmake \
libcurl \
mosquitto-clients mosquitto-dev && \
rm -f /var/cache/apk/*
RUN mkdir -p /usr/local/include/nlohmann
COPY ./src/nlohmann/json.hpp /usr/local/include/nlohmann/json.hpp
ENV LANG C.UTF-8
# Create app directory in the image
WORKDIR /usr/src/predix-edge-sample-scaler-cpp
# copy app's source files to the image
COPY src ./src
RUN make -f ./src/Makefile
FROM alpine:3.9
LABEL maintainer="Predix Edge Application Services"
LABEL hub="https://hub.docker.com"
LABEL org="https://hub.docker.com/u/predixedge"
LABEL repo="predix-edge-sample-scaler-cpp"
LABEL version="1.0.4"
LABEL support="https://forum.predix.io"
LABEL license="https://github.com/PredixDev/predix-docker-samples/blob/master/LICENSE.md"
RUN apk add --no-cache mosquitto-clients mosquitto-dev
WORKDIR /usr/src/predix-edge-sample-scaler-cpp
COPY --from=builder /usr/src/predix-edge-sample-scaler-cpp/src/scaler_app ./scaler_app
COPY --from=builder /usr/local/include/nlohmann/json.hpp /usr/local/include/nlohmann/json.hpp
CMD ["./scaler_app"]