2021-05-17 21:53:34 +02:00
|
|
|
FROM python:3.8.10-alpine3.13
|
2021-05-17 21:42:11 +02:00
|
|
|
|
|
|
|
RUN mkdir code
|
|
|
|
WORKDIR code
|
|
|
|
|
2021-05-17 21:53:34 +02:00
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers vim bash
|
2021-05-17 21:42:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
COPY . .
|