0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-16 17:01:33 -05:00

🐛 Install corepack and yarn globally as user on devenv dockerfile

This commit is contained in:
Andrey Antukh 2025-01-31 10:58:31 +01:00
parent aae8295795
commit 65504fbd91

View file

@ -277,6 +277,14 @@ RUN set -eux; \
./emsdk activate latest; \
rustup target add wasm32-unknown-emscripten;
USER penpot
RUN set -eux; \
corepack enable; \
corepack install -g yarn@4.3.1;
USER root
WORKDIR /home
COPY files/nginx.conf /etc/nginx/nginx.conf