v1 - 31.4 mb

This commit is contained in:
Bhupesh-V 2024-01-24 11:45:01 +05:30
parent 7be63fc4c5
commit 32b191786d

24
Dockerfile Normal file
View file

@ -0,0 +1,24 @@
# Use an official Alpine runtime as a parent image
FROM alpine:3.18
# Set the working directory in the container to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install dependencies
RUN apk add --no-cache \
bash \
gawk \
findutils \
coreutils \
git \
ncurses \
fzf
# Set permissions and move the script to path
RUN chmod +x ugit && mv ugit /usr/local/bin/
# Run ugit when the container launches
CMD ["ugit"]