Installing Vim in an Alpine Docker Container

Note Statistics

Note Statistics

  • Viewed 304 times
Mon, 05/03/2021 - 21:23

Run

apk update
apk add vim

You can also do this directly in the Dockerfile

FROM alpine

RUN apk update
RUN apk add vim
Authored by
Tags