Dockerfile : updated alpine && put nproc in quote to avoid potential globbing
This commit is contained in:
parent
6011177dd4
commit
e5f2eac0f0
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:3.19.0
|
FROM alpine:3.19.1
|
||||||
|
|
||||||
RUN apk add make g++
|
RUN apk add make g++
|
||||||
|
|
||||||
@ -17,6 +17,6 @@ RUN chown -R saundersp /home/saundersp/sorting_algorithms
|
|||||||
|
|
||||||
USER saundersp
|
USER saundersp
|
||||||
|
|
||||||
RUN make -j $(nproc)
|
RUN make -j "$(nproc)"
|
||||||
|
|
||||||
ENTRYPOINT ["bin/data"]
|
ENTRYPOINT ["bin/data"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user