FM4M-demo1 / Dockerfile-conda
ipd's picture
update requirements.txt
5dbff86
raw
history blame
369 Bytes
FROM condaforge/miniforge3
WORKDIR /app
SHELL ["/bin/bash", "-i", "-c"]
RUN apt-get update && \
apt-get install -y build-essential libxrender1 libxext-dev
RUN conda create --name fm4m python=3.9.7
RUN conda activate fm4m
COPY requirements.txt .
RUN pip install -r --no-cache-dir requirements.txt
RUN pip install torch_scatter==2.1.2
COPY . .
CMD ["python", "app.py"]