adaface-animate / Dockerfile
adaface-neurips
re-init
02cc20b
raw
history blame
286 Bytes
FROM python:3.8-slim
ENV PYTHONUNBUFFERED=1
RUN RUN apt-get update && \
apt-get install -y \
bash \
git git-lfs \
wget curl procps \
htop vim nano && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --link --chown=1000 ./ /app
CMD ["python", "app.py"]