quasar / Dockerfile
Kalpesh Parashar
refactor: clean up comments and improve code readability across multiple files
40ace8f
raw
history blame contribute delete
134 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN pip install uv
COPY . .
ENV PYTHONPATH="/app"
RUN uv pip install --system .
CMD ["server"]