This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7-alpine as base | |
ENV PYTHONDONTWRITEBYTECODE 1 | |
COPY requirements.txt requirements_dev.txt ./ | |
RUN apk add --update --no-cache --virtual .build-deps \ | |
build-base \ | |
postgresql-dev \ | |
libffi-dev \ | |
python3-dev \ |