Skip to content

Instantly share code, notes, and snippets.

View MQBR's full-sized avatar
🏠
Working from home

Muhamad Quris Bin Ruslan MQBR

🏠
Working from home
  • Indonesia
View GitHub Profile
@MQBR
MQBR / dockerfile
Created August 23, 2022 08:46
dockerfile example for flask+sqlalchemy+mysql use alpine image
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