diff --git a/Dockerfile b/Dockerfile index 892c66f..4371d70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine AS base +FROM debian:stable-slim AS base LABEL maintainer="push-edp aspushedp@gmail.com" WORKDIR /root -RUN apk update -RUN apk add bash git build-base cmake coreutils curl unzip gettext-tiny-dev +RUN apt-get update -y +RUN apt-get install -y ninja-build gettext cmake unzip curl COPY ./neovim /root/neovim @@ -14,13 +14,14 @@ WORKDIR /root/neovim RUN make CMAKE_BUILD_TYPE=Release RUN make install -FROM alpine AS nvim +FROM debian:stable-slim + +LABEL maintainer="push-edp aspushedp@gmail.com" WORKDIR /root -RUN apk update -RUN apk add bash git curl unzip make gcc -RUN apk add build-base +RUN apt-get update -y +RUN apt-get install -y git curl unzip build-essential COPY --from=base /usr/local /usr/local diff --git a/lemonade/lemonade_arm64 b/lemonade/lemonade_arm64 index 241f2d2..caf7737 100755 Binary files a/lemonade/lemonade_arm64 and b/lemonade/lemonade_arm64 differ