frontend/Dockerfile

16 lines
357 B
Docker

FROM nginx:alpine
# Set up environment for building
RUN apk add yarn nodejs
# Copy files to build environment
RUN mkdir /opt/micromobility-navigation
COPY . /opt/micromobility-navigation
# Run Vite production build
WORKDIR /opt/micromobility-navigation
RUN yarn
RUN yarn run build
# Copy files to nginx path
RUN cp -r dist/* icons /usr/share/nginx/html