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

Commit

Permalink
v.0.1.8 - Replace baseimage
Browse files Browse the repository at this point in the history
  • Loading branch information
rix committed Jun 24, 2024
1 parent 2f94b15 commit fe9f66f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 38 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
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 fe9f66f

Please sign in to comment.