This file contains hidden or 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.8.13-alpine3.16 | |
RUN apk update && apk add mysql-client \ | |
&& apk add --virtual build-deps gcc python3-dev musl-dev \ | |
&& apk add --no-cache mariadb-dev \ | |
&& apk add --no-cache mariadb-connector-c-dev \ | |
&& apk add linux-headers | |
COPY . /app |