some more improvements

This commit is contained in:
2021-05-21 19:31:05 +02:00
parent 985151c3ed
commit e95ba333a5
3 changed files with 7 additions and 14 deletions

View File

@ -1,8 +1,7 @@
FROM ubuntu:latest
# FROM alpine:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake g++
RUN apt-get update && apt-get install -y cmake g++
# RUN apk add cmake make g++
WORKDIR /usr/src/app
@ -16,3 +15,4 @@ RUN set -ex; \
ENTRYPOINT ["cmake", "--build", "build-linux"]
CMD ["-j"]
# CMD ["bash"]