Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example of multistage building of minimized docker container #1

Open
MikeTolkachev opened this issue Dec 28, 2020 · 0 comments
Open

Comments

@MikeTolkachev
Copy link

MikeTolkachev commented Dec 28, 2020

FROM alpine-oatpp-base-image AS builder

# make main app
ADD . /tmp
WORKDIR /tmp/build
RUN cmake .. && make -j `grep -c '^processor' /proc/cpuinfo`

# copy app and deps to prod dir
WORKDIR /tmp/build/prod/bin

# application-exe is project_name from CMakeLists.txt with -exe postfix
RUN cp ../../application-exe ./service
WORKDIR /tmp/build/prod/lib
# get deps from application-exe and copy to libs dir
RUN ldd ../bin/service | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./

# make prod image
FROM alpine:latest AS prod
COPY --from=builder /tmp/build/prod/ /
EXPOSE 8000 8000
ENTRYPOINT ["service"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant