Membership invitations and order emails #47

Merged
valberg merged 10 commits from benjaoming/membersystem:membership-invite into main 2024-08-14 09:17:30 +00:00
Showing only changes of commit 15e422175b - Show all commits

View file

@ -21,7 +21,8 @@ WORKDIR /app
RUN groupadd -g 1000 www && useradd -u 1000 -ms /bin/bash -g www www RUN groupadd -g 1000 www && useradd -u 1000 -ms /bin/bash -g www www
# Only copy the requirements file first to leverage Docker cache # Only copy the requirements file first to leverage Docker cache
COPY $REQUIREMENTS_FILE . RUN mkdir requirements/
COPY $REQUIREMENTS_FILE $REQUIREMENTS_FILE
RUN mkdir -p /app/src/static && \ RUN mkdir -p /app/src/static && \
chown www:www /app/src/static && \ chown www:www /app/src/static && \