2024-05-27 17:53:22 +00:00
|
|
|
FROM servostar/gemstone:sdk-0.2.5-alpine-3.19.1
|
2024-02-04 15:23:32 +00:00
|
|
|
LABEL authors="servostar"
|
2024-05-27 17:53:22 +00:00
|
|
|
LABEL version="0.2.5"
|
2024-02-04 15:23:32 +00:00
|
|
|
LABEL description="docker image for setting up the build pipeline on SDK"
|
|
|
|
LABEL website="https://github.com/Servostar/gemstone"
|
|
|
|
|
2024-05-02 10:14:59 +00:00
|
|
|
COPY --chown=lorang src /home/lorang/src
|
|
|
|
COPY --chown=lorang tests /home/lorang/tests
|
|
|
|
COPY --chown=lorang CMakeLists.txt /home/lorang/
|
|
|
|
COPY --chown=lorang run-check-test.sh /home/lorang/
|
2024-05-17 13:49:10 +00:00
|
|
|
COPY --chown=lorang .env /home/lorang/
|
2024-05-17 14:02:40 +00:00
|
|
|
COPY --chown=lorang run-docker-build.sh /home/lorang/
|
2024-05-25 11:54:21 +00:00
|
|
|
COPY --chown=lorang run-lib-build.sh /home/lorang/
|
2024-06-01 12:52:59 +00:00
|
|
|
COPY --chown=lorang dep /home/lorang/dep
|
|
|
|
COPY --chown=lorang .git /home/lorang/.git
|
2024-02-04 15:23:32 +00:00
|
|
|
|
2024-04-22 11:15:33 +00:00
|
|
|
RUN cmake .
|