13 lines
202 B
Text
13 lines
202 B
Text
|
FROM python:3.8-alpine
|
||
|
|
||
|
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 . .
|