Skip to content

Commit 0aad29e

Browse files
committed
Add Dockerfile for environment setup with necessary tools and permissions
1 parent 508f251 commit 0aad29e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM paulgauthier/aider-full
2+
3+
USER root
4+
5+
# install some tools
6+
RUN apt update && apt install -y git curl wget npm php-cli jq gh sudo
7+
8+
# add suders
9+
RUN echo "appuser ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
10+
11+
USER appuser

0 commit comments

Comments
 (0)