mirror of
https://github.com/penpot/penpot.git
synced 2026-08-06 12:58:55 +00:00
Move docker/imagemagick/Dockerfile and docker/devenv/Dockerfile from ubuntu:26.04 to Docker Hardened Images (Debian 13 / trixie). imagemagick gets a true non-dev runtime with its shared libraries vendored via ldd; devenv keeps the -dev tag as its final image since it's an interactive development container, not a production artifact.
35 lines
907 B
Bash
Executable File
35 lines
907 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
EMSDK_QUIET=1 . /opt/emsdk/emsdk_env.sh;
|
|
|
|
usermod -u ${EXTERNAL_UID:-1000} penpot;
|
|
|
|
cp /root/.bashrc /home/penpot/.bashrc
|
|
cp /root/.vimrc /home/penpot/.vimrc
|
|
cp /root/.tmux.conf /home/penpot/.tmux.conf
|
|
|
|
# Seed SERENA_HOME with default config on first run
|
|
mkdir -p ${SERENA_HOME}
|
|
if [ ! -f "${SERENA_HOME}/serena_config.yml" ]; then
|
|
cp /home/serena_config.yml "${SERENA_HOME}/serena_config.yml"
|
|
fi
|
|
chown -R penpot:users ${SERENA_HOME}
|
|
|
|
chown penpot:users /home/penpot
|
|
# we need to be able to install rust-analyzer and possibly other dependencies with rustup
|
|
chown -R penpot:penpot /opt/rustup
|
|
|
|
rsync -ar --chown=penpot:users /opt/cargo/ /home/penpot/.cargo/
|
|
|
|
export JAVA_OPTS="-Djava.net.preferIPv4Stack=true"
|
|
export PATH="/home/penpot/.cargo/bin:$PATH"
|
|
export CARGO_HOME="/home/penpot/.cargo"
|
|
|
|
export LANG=C.UTF-8
|
|
export LC_ALL=C.UTF-8
|
|
export COLORTERM=truecolor
|
|
|
|
exec "$@"
|