Skip to content

Commit

Permalink
fix: install git in container
Browse files Browse the repository at this point in the history
  • Loading branch information
b1rger committed Oct 18, 2024
1 parent 3b8432a commit 6ef20c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN cp startup/* /startup || true && \
groupadd --gid $USER_GID $USERNAME && \
useradd --uid $USER_UID --gid $USER_GID -m $USERNAME -s /usr/bin/bash && \
chown -R $USERNAME /app /usr/local && \
apt-get update && apt-get install -y tmux libpq-dev libldap-dev libsasl2-dev postgresql-client-common postgresql-client gettext gcc && rm -rf /var/lib/apt/lists/* && \
apt-get update && apt-get install -y tmux libpq-dev libldap-dev libsasl2-dev postgresql-client-common postgresql-client gettext gcc git && rm -rf /var/lib/apt/lists/* && \
pip install uvicorn gunicorn && pip install .

USER $USERNAME
Expand Down

0 comments on commit 6ef20c8

Please sign in to comment.