diff options
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile index bcb4aece7..21dd41daa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM gcc:latest +FROM gcc:1.5.1.0 -RUN apt-get update && apt-get install --no-install-recommends -y ninja-build cmake +RUN apt-get update \ + apt-get install --no-install-recommends -y ninja-build cmake zlib1g-dev WORKDIR /app -RUN apt install zlib1g-dev COPY . . |