Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
push edp committed Nov 23, 2023
1 parent 44bb8db commit f5a1bdd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Dockerfile
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

Expand All @@ -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

Expand Down
Binary file modified lemonade/lemonade_arm64
Binary file not shown.

0 comments on commit f5a1bdd

Please sign in to comment.