# 使用huggingface的基础镜像 # FROM huggingface/transformers:latest RUN adduser -D app USER app WORKDIR /home/app RUN git clone https://github.com/usememos/memos.git WORKDIR /home/app/memos # 暴露端口5230 EXPOSE 5230 # 运行memos应用 CMD ["neosmemo/memos:stable"]