Add Bun installation and PATH update to Dockerfile

This commit is contained in:
Víctor Falcón 2025-11-24 16:50:49 +01:00
parent 43792392b4
commit 1bc4028992
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
# Install Bun
RUN curl -fsSL https://bun.com/install | bash
ENV PATH="/root/.bun/bin:${PATH}"
# Install memcached and redis servers
RUN apt-get update && apt-get install -y memcached redis-server && rm -rf /var/lib/apt/lists/*