From 0207779fbc52e81e388c948423de422283485af7 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Mon, 14 Dec 2020 12:09:44 +0800 Subject: [PATCH] Fixed commands --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3b1c24..200d36e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ FROM harbor.ervine.dev/public/x86_64/alpine:v3.12 AS builder -LABEL Maintainer = "Jonathan Ervine " +LABEL maintainer="Jonathan Ervine " WORKDIR /root/ -RUN apk --update --no-cache \ +RUN apk --update --no-cache && \ apk add git cmake make gcc gcc-c++ -RUN git clone https://github.com/wez/atomicparsley atomic \ - cd atomic \ +RUN git clone https://github.com/wez/atomicparsley atomic && \ + cd atomic && \ cmake . && cmake --build . --config Release FROM harbor.ervine.dev/public/x86_64/alpine:v3.12