workflow-twin / Dockerfile
NDGCodes's picture
fix repo structure for HF
1a692ce
raw
history blame contribute delete
245 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV OPENENV_SEED=42
ENV ENV_SEED=42
EXPOSE 8000
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]