diffy / Dockerfile
redfernstech's picture
Create Dockerfile
3bce27b verified
Raw
History Blame Contribute Delete
223 Bytes
FROM docker:27-cli
RUN apk add --no-cache git docker-cli-compose bash
WORKDIR /app
RUN git clone https://github.com/langgenius/dify.git
WORKDIR /app/dify/docker
RUN cp .env.example .env
CMD ["docker", "compose", "up"]