eda-franky-v1 / Dockerfile
architojha's picture
pushing api
8675ade
raw
history blame
306 Bytes
FROM python:3.11.4
WORKDIR /app
COPY . /app/
RUN apt-get update && \
apt-get install -y \
redis-server \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip && \
pip install uv && \
uv pip install --system -r requirements.txt
CMD ["python", "-m", "main"]