9 lines
112 B
Docker
9 lines
112 B
Docker
FROM python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=frontend_build /app/build/ /
|
|
|
|
EXPOSE 80
|
|
|
|
# CMD [ "langchain" ]
|