Install git in container

This commit is contained in:
Dustin Pianalto 2019-12-23 23:11:56 -09:00
parent 279217bd79
commit 9ab2ff96a5

View File

@ -17,6 +17,8 @@ RUN apk update && \
&& apk add gettext \
# https://docs.djangoproject.com/en/dev/ref/django-admin/#dbshell
&& apk add postgresql-client
# Install git
&& apk add git
RUN mkdir /code
WORKDIR /code