File size: 290 Bytes
ccc528f 9fa01de 20608a5 012fdcc 174e240 da79d48 012fdcc 8e9ff5b 012fdcc 826c645 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# FROM lobehub/lobe-chat:v0.99.1
FROM lobehub/lobe-chat
EXPOSE 3210
ENV PORT=3210
ENV ACCESS_CODE=""
USER root
RUN mkdir -p /app/.next/cache
RUN chmod -R 777 /app/.next/cache
RUN mkdir -p nonexistent
RUN chmod -R 777 nonexistent
# RUN yarn add sharp
USER nextjs
CMD ["node", "server.js"]
|