kers/Dockerfile
2020-07-24 22:40:38 +02:00

13 lines
208 B
Docker

FROM python:3.8.5-alpine3.12
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 . .