Skip to content

Commit

Permalink
Install uwsgi in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
miteshashar committed Oct 31, 2023
1 parent b5f05e0 commit 6b99f09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ WORKDIR /home/funnel/app
COPY --chown=funnel:funnel Makefile Makefile
COPY --chown=funnel:funnel requirements/base.txt requirements/base.txt
RUN mkdir -pv /home/funnel/.cache/pip
RUN --mount=type=cache,target=/home/funnel/.cache/pip,uid=1000,gid=1000 make install-python
# hadolint ignore=DL3013,DL3042
RUN --mount=type=cache,target=/home/funnel/.cache/pip,uid=1000,gid=1000 make install-python && pip install --upgrade uwsgi

COPY --chown=funnel:funnel . .
COPY --from=assets --chown=funnel:funnel /home/node/app/funnel/static/built/ funnel/static/build
Expand Down

0 comments on commit 6b99f09

Please sign in to comment.