Skip to content

Commit

Permalink
docker: Add tools
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta committed Dec 27, 2024
1 parent 3b00aa0 commit 48d4ca5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ARG USER_GID=$USER_UID
COPY --from=go-builder /app/bin/dagu /usr/local/bin/
COPY ./entrypoint.sh /entrypoint.sh

# Install common GitHub Actions tools
# Install common tools
RUN apt-get update && \
apt-get install -y \
git \
Expand All @@ -36,6 +36,14 @@ RUN apt-get update && \
unzip \
sudo \
tzdata \
build-essential \
jq \
python3 \
python3-pip \
openjdk-11-jdk \
nodejs \
npm \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && \
# Create user and set permissions
groupadd -g ${USER_GID} ${USER} && \
Expand Down

0 comments on commit 48d4ca5

Please sign in to comment.