You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/infra/Docker/Dockerfile.gpu

62 lines
1.5 KiB

# FROM nvidia/cuda:11.7.0-runtime-ubuntu20.04
# WORKDIR /app/
# ENV DEBIAN_FRONTEND=noninteractive
# RUN \
# apt-get update && \
# apt-get install -y software-properties-common && \
# add-apt-repository ppa:deadsnakes/ppa && \
# apt-get install -y python3.10 python3-pip curl && \
# curl -sSL https://install.python-poetry.org | python3 - && \
# apt-get install -y nodejs npm
# ENV PATH "/root/.local/bin:$PATH"
# COPY pyproject.toml .
# COPY poetry.lock .
# COPY api/__init__.py api/__init__.py
# RUN poetry config virtualenvs.in-project true
# RUN poetry config virtualenvs.path .venv
# RUN poetry config installer.max-workers 10
# RUN poetry env use 3.10
# RUN poetry install --with tools,gpu
# COPY . .
# ENV PORT 8001
# ENTRYPOINT ["poetry", "run", "serve"]
2 years ago
FROM nvidia/cuda:11.7.0-runtime-ubuntu20.04
# Set working directory
2 years ago
WORKDIR /app/
# Install system dependencies
2 years ago
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa && \
apt-get install -y python3.10 python3-pip curl && \
apt-get install -y nodejs npm
2 years ago
# Set environment variables
2 years ago
ENV PATH "/root/.local/bin:$PATH"
ENV PORT 8001
2 years ago
# Copy project files
COPY requirements.txt .
2 years ago
# Install project dependencies
RUN python3.10 -m pip install --upgrade pip && \
python3.10 -m pip install --no-cache-dir -r requirements.txt
2 years ago
# Copy application files
2 years ago
COPY . .
# Run the application
CMD ["python3.10", "app.py"]