Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devfile.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schemaVersion: 2.3.0
metadata:
name: jumpstarter-devspace
name: jumpstarter-dev
icon: https://jumpstarter.dev/jumpstarter.svg
tags:
- Python
Expand Down
2 changes: 1 addition & 1 deletion .devfile/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uvx /bin/uvx

USER root

RUN dnf -y install make git python3.12 libusbx python3-pyusb golang && dnf clean all
RUN dnf -y install make git python3.12 libusbx python3-pyusb golang podman && dnf clean all

USER 10001

Expand Down
6 changes: 5 additions & 1 deletion .devfile/Containerfile.client
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ USER root
# switch to python 3.12 as the default
RUN rm -rf /usr/bin/python && ln -s /usr/bin/python3.12 /usr/bin/python

RUN dnf -y install make git python3.12 python3.12-pytest libusbx python3-pyusb python3.12-pip golang && dnf clean all
RUN dnf -y install make git python3.12 python3.12 libusbx python3-pyusb python3.12-pip golang && dnf clean all

USER 10001
RUN --mount=from=builder,source=/src/dist,target=/dist python3.12 -m pip install /dist/*.whl
RUN python3.12 -m pip install pytest

RUN mkdir -p /home/user/.config/jumpstarter/clients && chmod a+rwx -R /home/user/.config/jumpstarter/clients

This file was deleted.