Skip to content

Commit

Permalink
Dockerfile for basic example shipping.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Jul 17, 2024
1 parent 47fbcbb commit 39b5f07
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM frolvlad/alpine-gxx
COPY . /app
WORKDIR /app
RUN mkdir -p dist && \
g++ -std=c++17 -Isrc src/*.cpp -o dist/basic_example examples/basic_example/basic_example.cpp
CMD ["./dist/basic_example"]

0 comments on commit 39b5f07

Please sign in to comment.