DockerGenAI_Streamlit / front-end.Dockerfile
jaothan's picture
Upload 47 files
b8dc493 verified
raw
history blame contribute delete
127 Bytes
FROM node:alpine
WORKDIR /app
COPY front-end/ .
RUN npm install
EXPOSE 8505
ENTRYPOINT [ "npm", "run", "dev" ]