FROM python:3.11-alpine

WORKDIR /

COPY requirements-freeze.txt /

RUN pip install -r requirements-freeze.txt

