mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-14 04:27:28 -06:00
8 lines
171 B
Docker
8 lines
171 B
Docker
FROM ghcr.io/steamdeckhomebrew/holo-base:latest as tools
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN set -eux; \
|
|
pacman -S --noconfirm npm jq; \
|
|
npm install -g npm@9.2.0 pnpm;
|