langflow/src/frontend/Dockerfile
2023-03-17 09:50:02 -03:00

10 lines
No EOL
229 B
Docker

FROM node:14-alpine as frontend_build
ARG BACKEND
WORKDIR /app
COPY . /app
RUN npm install
RUN npm run build
FROM nginx
COPY --from=frontend_build /app/build/ /usr/share/nginx/html
COPY /nginx.conf /etc/nginx/conf.d/default.conf