FredrikNoren / ungit

The easiest way to use git. On any platform. Anywhere.
MIT License
10.41k stars 637 forks source link

Docker image #1568

Open viharm opened 10 months ago

viharm commented 10 months ago

I've tried to create a Docker image using the Node image.

I use the following Dockerfile

  FROM node:20.5.1-alpine3.18
  RUN apk add --no-cache git gpg gpg-agent && rm -vrf /var/cache/apk/*
  RUN  npm install ungit@latest -g && npm cache clean --force
  EXPOSE 8448
  WORKDIR /var/local/ungit

I've pushed to the Docker hub (https://hub.docker.com/r/cerebralvoyage/ungit-docker), if anyone is interested. More notes over there

Edit 29-Oct-2023: Changed Docker link to the new repo.

viharm commented 8 months ago

Image updated with Node 20.9.0 Image repo moved (link above has been updated to the point to the new repo).