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.7 - Fix baseimage
Browse files Browse the repository at this point in the history
  • Loading branch information
rix committed Jun 17, 2024
1 parent bff55aa commit 2f94b15
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
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.6"
return "0.1.7"


def create_version_file():
Expand Down
32 changes: 16 additions & 16 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.6",
"version": "0.1.7",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
MAINTAINER rix1337

# Define package name
Expand All @@ -12,7 +12,8 @@ ARG VS="false"
RUN echo "VS: ${VS}"

# setup
RUN pip3 install --upgrade pip \
RUN mkdir -p ~/.config/pip && echo -e "[global]\nbreak-system-packages = true" > ~/.config/pip/pip.conf \
&& pip3 install --upgrade pip \
&& pip3 install wheel

# Install specified package version and clean up unneeded packages
Expand Down

0 comments on commit 2f94b15

Please sign in to comment.