Fixed commands

This commit is contained in:
Jonathan Ervine 2020-12-14 12:09:44 +08:00
parent 3dac3d7b33
commit 0207779fbc

View File

@ -1,13 +1,13 @@
FROM harbor.ervine.dev/public/x86_64/alpine:v3.12 AS builder
LABEL Maintainer = "Jonathan Ervine <docker@ervine.org>"
LABEL maintainer="Jonathan Ervine <docker@ervine.org>"
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