ananthakumaran / paisa

Paisa – Personal Finance Manager. https://paisa.fyi demo: https://demo.paisa.fyi
https://paisa.fyi
GNU Affero General Public License v3.0
2.4k stars 124 forks source link

Docker installation #43

Closed mariushosting closed 11 months ago

mariushosting commented 11 months ago

Is there any Docker image available?

Sarath234 commented 11 months ago

I have created a simple Dockerfile for Docker Installation


FROM --platform=linux/amd64 ubuntu:22.04

ARG DEBIAN_FRONTEND=noninteractive
RUN apt update
RUN apt upgrade -y
RUN apt-get install wget -y

RUN wget https://github.com/ananthakumaran/paisa/releases/download/v0.5.2/paisa-cli-linux-amd64
RUN mv paisa-cli-linux-amd64 paisa
RUN chmod u+x paisa
RUN mv paisa /usr/local/bin
EXPOSE 7500
CMD ["/usr/local/bin/paisa", "serve"]
ananthakumaran commented 11 months ago

I am going to convert this to an discussion, please use issue tracker for bugs only