Skip to content

Commit

Permalink
updated backend dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-wu1 committed Jul 10, 2024
1 parent c3659b8 commit f8cdef7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ ARG GOOGLE_CLIENT_SECRET
ARG OAUTH_REDIRECT_URI
ARG CLIENT_URL

# -- Message Broker vars -- #
ARG CELERY_BROKER_URL
ARG CELERY_RESULT_BACKEND
ARG AWS_SQS_URL
ARG MESSAGE_BROKER

# -- env -- #

ENV DB_USER $DB_USER
Expand All @@ -98,6 +104,12 @@ ENV GOOGLE_CLIENT_SECRET $GOOGLE_CLIENT_SECRET
ENV CLIENT_URL $CLIENT_URL
ENV OAUTH_REDIRECT_URI $OAUTH_REDIRECT_URI

ENV CELERY_BROKER_URL $CELERY_BROKER_URL
ENV CELERY_RESULT_BACKEND $CELERY_RESULT_BACKEND
ENV AWS_SQS_URL $AWS_SQS_URL
ENV MESSAGE_BROKER $MESSAGE_BROKER


# create the appropriate directories
ENV HOME=/home/app
ENV APP_HOME=/home/app/backend
Expand Down

0 comments on commit f8cdef7

Please sign in to comment.