Advertisement
izznogooood

Untitled

Aug 16th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. FROM python:3.7.2-alpine3.9
  2.  
  3. ENV PYTHONDONTWRITEBYTECODE=1
  4. ENV PYTHONUNBUFFERED=1
  5.  
  6. WORKDIR /app
  7.  
  8. RUN apk add --no-cache linux-headers bash gcc \
  9. musl-dev libjpeg-turbo-dev libpng libpq \
  10. postgresql-dev uwsgi uwsgi-python3 git \
  11. zlib-dev libmagic
  12.  
  13.  
  14. COPY ./requirements.txt /app
  15.  
  16. RUN pip install -U pip
  17. RUN pip install -U -r /app/requirements.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement