AI_Career_Advisor__ / Dockerfile
JUNAID0990
Convert project to canonical OpenEnv server layout
4658f60
Raw
History Blame Contribute Delete
171 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "-m", "server.app"]