Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #11 from rix1337/dev
Browse files Browse the repository at this point in the history
v.0.1.8 - Replace baseimage
  • Loading branch information
rix1337 authored Jun 24, 2024
2 parents 6caab2f + 206035d commit acbbaf2
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 52 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/UpdateOnBaseImageChange.yml

This file was deleted.

2 changes: 1 addition & 1 deletion budgeteer/providers/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def get_version():
return "0.1.7"
return "0.1.8"


def create_version_file():
Expand Down
28 changes: 14 additions & 14 deletions budgeteer/web_interface/vuejs_frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion budgeteer/web_interface/vuejs_frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "budgeteer-web",
"version": "0.1.7",
"version": "0.1.8",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
11 changes: 5 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
FROM alpine:latest
MAINTAINER rix1337

# Define package name
ARG PACKAGE_NAME=budgeteer

# build tools
RUN apk add --no-cache build-base jq python3-dev py3-pip
RUN apk add --no-cache curl build-base jq python3-dev py3-pip

# Optionally set desired version for the build
ARG VS="false"
Expand All @@ -20,12 +20,11 @@ RUN mkdir -p ~/.config/pip && echo -e "[global]\nbreak-system-packages = true" >
RUN if [[ ${VS} == "false" ]] ; then echo "Grabbing latest version from pypi.org" && VERSION=$(curl -Ls https://pypi.org/pypi/${PACKAGE_NAME}/json | jq -r .info.version) ; else echo "Using version from workflow_dispatch input" && VERSION=$VS ; fi && \
echo $VERSION && \
pip3 install ${PACKAGE_NAME}=="$VERSION" --no-cache-dir && \
apk del build-base jq

# add local files
COPY root/ /
apk del curl build-base jq

# volumes and ports
VOLUME /config
EXPOSE 8080
ENV PYTHONUNBUFFERED=1

ENTRYPOINT ["sh", "-c", "budgeteer --docker --log-level=$LOGLEVEL"]
1 change: 0 additions & 1 deletion docker/root/donate.txt

This file was deleted.

3 changes: 0 additions & 3 deletions docker/root/etc/s6-overlay/s6-rc.d/init-adduser/branding

This file was deleted.

3 changes: 0 additions & 3 deletions docker/root/etc/services.d/budgeteer/run

This file was deleted.

0 comments on commit acbbaf2

Please sign in to comment.