diff --git a/Dockerfile b/Dockerfile index 768b8be..c1d9e17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM alpine:3.14 -RUN apk update && apk add --no-cache nodejs npm make g++ +RUN apk update && apk add --no-cache nodejs npm make g++ git + +RUN git clone https://github.com/oatpp/oatpp.git && cd oatpp/ && mkdir build && cd build && cmake .. && make install WORKDIR /app @@ -10,5 +12,4 @@ RUN npm install CMD ["npm", "run", "build"] -EXPOSE 8080 - +EXPOSE 8080