Skip to content

Commit

Permalink
still wip
Browse files Browse the repository at this point in the history
  • Loading branch information
donkeyx committed Jun 19, 2024
1 parent 2c7a382 commit c2c4c45
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,20 @@ COPY ./*.sh /app/
# Update and install basic tools
RUN apt-get update && apt-get install -y \
dnsutils netcat-openbsd curl wget tar gnupg vim tmux zsh screenfetch && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install PostgreSQL client and Redis tools
RUN apt-get update && apt-get install -y \
postgresql-client redis-tools && \
git golang nodejs npm && \
apt-get clean &&
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# rm -rf /var/lib/apt/lists/*
# Install Git, Go, Node.js, and npm
RUN apt-get update && apt-get install -y \
git golang nodejs npm && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# # Install MongoDB tools
# RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor && \
Expand Down

0 comments on commit c2c4c45

Please sign in to comment.