kers/Dockerfile
2020-07-23 14:07:37 +02:00

13 lines
202 B
Docker

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 . .