Skip to content

Commit

Permalink
Add app/ path
Browse files Browse the repository at this point in the history
  • Loading branch information
Bachibouzouk committed Jan 28, 2025
1 parent 680b65c commit 7577825
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/compose/production/app_postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN mkdir ${CONFIG_ROOT}
COPY requirements/base.txt ${CONFIG_ROOT}/base.txt
COPY requirements/production.txt ${CONFIG_ROOT}/production.txt
COPY app/requirements/base.txt ${CONFIG_ROOT}/base.txt
COPY app/requirements/production.txt ${CONFIG_ROOT}/production.txt


RUN pip install --upgrade pip \
&& pip install --no-cache-dir -r ${CONFIG_ROOT}/production.txt

WORKDIR ${APP_ROOT}

ADD . ${APP_ROOT}
ADD app/ ${APP_ROOT}

COPY ./djangoq_setup.sh /djangoq_setup.sh
COPY ./app/djangoq_setup.sh /djangoq_setup.sh
RUN chmod +x /djangoq_setup.sh

RUN adduser appuser --system --no-create-home --shell /bin/sh \
Expand Down

0 comments on commit 7577825

Please sign in to comment.