-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
push edp
committed
Nov 23, 2023
1 parent
44bb8db
commit f5a1bdd
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM alpine AS base | ||
FROM debian:stable-slim AS base | ||
|
||
LABEL maintainer="push-edp [email protected]" | ||
|
||
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 [email protected]" | ||
|
||
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 | ||
|
||
|
Binary file not shown.