Dockerfile 86 Bytes
Newer Older
1 2 3 4 5 6 7
FROM python:3.9.16-alpine

WORKDIR /app

COPY . .

RUN pip install -r requirements.txt