diff --git a/Dockerfile b/Dockerfile index 1d5ce4b..ce2db20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM servostar/gemstone:sdk-0.2.0-alpine-3.19.1 +FROM servostar/gemstone:sdk-0.2.1-alpine-3.19.1 LABEL authors="servostar" -LABEL version="0.2.0" +LABEL version="0.2.1" LABEL description="docker image for setting up the build pipeline on SDK" LABEL website="https://github.com/Servostar/gemstone" -COPY --chown=lorang src /home/lorang/src -COPY --chown=lorang CMakeLists.txt /home/lorang/ +RUN git clone https://github.com/Servostar/gemstone.git /home/lorang -RUN cmake . \ No newline at end of file +RUN cmake . diff --git a/sdk/Dockerfile b/sdk/Dockerfile index 098f659..4dbeb1f 100644 --- a/sdk/Dockerfile +++ b/sdk/Dockerfile @@ -1,13 +1,13 @@ FROM alpine:3.19.1 LABEL authors="servostar" -LABEL version="0.2.0" +LABEL version="0.2.1" LABEL description="base image for building the gemstone programming language compiler" LABEL website="https://github.com/Servostar/gemstone" # install dependencies -RUN apk add build-base gcc make cmake bison flex +RUN apk add build-base gcc make cmake bison flex git # create user for build RUN adduser --disabled-password lorang WORKDIR /home/lorang -USER lorang \ No newline at end of file +USER lorang