Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #

FROM golang:1.23-bookworm AS development
FROM golang:1.24-bookworm AS development

# //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #

Expand Down Expand Up @@ -60,6 +60,19 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
-p https://github.com/zsh-users/zsh-autosuggestions \
-p https://github.com/zsh-users/zsh-completions

# Install Bun
RUN curl -fsSL https://bun.sh/install | bash

# Set the BUN_INSTALL environment variable
ENV BUN_INSTALL="/root/.bun"

# Set the PATH to include Bun
ENV PATH="$BUN_INSTALL/bin:$PATH"

# Configure Zsh with Bun
RUN echo 'export BUN_INSTALL="/root/.bun"' >> ~/.zshrc
RUN echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> ~/.zshrc

# Copy application code
COPY . /usr/src/app/

Expand Down