use public dir instead of dist
Some checks failed
ci / build (push) Failing after 0s
ci / Tests & Checks (push) Failing after 1s

This commit is contained in:
CJ_Clippy 2025-07-19 11:02:36 -08:00
parent 94e2d6b732
commit 41ce355e7e
3 changed files with 28 additions and 3 deletions

View File

@ -0,0 +1,25 @@
path: /home/cj/Documents/futureporn-monorepo/apps/vibeui/data
train: train/images
val: val/images
names:
0: ControlledByTipper
1: ControlledByTipperHigh
2: ControlledByTipperLow
3: ControlledByTipperMedium
4: ControlledByTipperUltrahigh
5: Earthquake
6: Fireworks
7: HighLevel
8: LowLevel
9: MediumLevel
10: Pause
11: Pulse
12: RandomTime
13: RespondingTo
14: Ring1
15: Ring2
16: Ring3
17: Ring4
18: UltraHighLevel
19: Wave

Binary file not shown.

View File

@ -20,9 +20,9 @@ RUN apt-get update -y && \
COPY --from=ipfs/kubo:v0.36.0 /usr/local/bin/ipfs /usr/local/bin/ipfs
# Bundle the vibeui pytorch model
RUN mkdir -p /app/dist/vibeui \
&& wget -q https://gitea.futureporn.net/futureporn/fp/raw/branch/main/apps/vibeui/dist/vibeui.pt -O /app/vibeui/vibeui.pt \
&& wget -q https://gitea.futureporn.net/futureporn/fp/raw/branch/main/apps/vibeui/dist/data.yaml -O /app/vibeui/data.yaml
RUN mkdir -p /app/vibeui \
&& wget -q https://gitea.futureporn.net/futureporn/fp/raw/branch/main/apps/vibeui/public/vibeui.pt -O /app/vibeui/vibeui.pt \
&& wget -q https://gitea.futureporn.net/futureporn/fp/raw/branch/main/apps/vibeui/public/data.yaml -O /app/vibeui/data.yaml
# Copy and install dependencies
COPY package.json package-lock.json ./