This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/Dockerfile

15 lines
300 B
Docker
Raw Normal View History

2023-07-19 19:55:16 +00:00
FROM nginx:alpine
# Set up environment for building
RUN apk add git yarn nodejs
WORKDIR /opt
RUN git clone https://gitlab.com/openKMITL/micromobility-navigation.git
WORKDIR /opt/micromobility-navigation/micromobility-navigation
RUN yarn
RUN yarn run build
RUN cp -r dist/* /usr/share/nginx/html