2020-07-24 22:39:50 +02:00
|
|
|
FROM python:3.8.5-alpine3.12
|
2020-07-23 14:07:31 +02:00
|
|
|
|
|
|
|
RUN mkdir code
|
|
|
|
WORKDIR code
|
|
|
|
|
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers mariadb-dev
|
|
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
COPY . .
|