MusicGen / Dockerfile
PegaMichael's picture
Update Dockerfile
99b1b29
raw
history blame contribute delete
300 Bytes
FROM mcpdc-dockerhub.pegatroncorp.com/cambrian-dl-env/pega_pytorch_1.10.0__2.4.2_production_9b7451127a5a054bec20c2e8b7064391:20230829010615
WORKDIR /app
COPY . .
EXPOSE 7860
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r req.txt
RUN pip install -U typer
CMD ["python3 ./app.py"]