12 lines
206 B
Docker
12 lines
206 B
Docker
FROM python:3.8.10-alpine3.13
|
|
|
|
RUN mkdir code
|
|
WORKDIR code
|
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers vim bash
|
|
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|