Remove unused dependency

This commit is contained in:
Sascha Hagedorn 2020-01-30 11:48:01 +01:00
parent ea895da29d
commit a73108f291

View file

@ -1,5 +1,4 @@
FROM node:8-alpine as build FROM node:8-alpine as build
RUN apk add --no-cache git
RUN mkdir /tmp/brouter-web RUN mkdir /tmp/brouter-web
WORKDIR /tmp/brouter-web WORKDIR /tmp/brouter-web
COPY . . COPY . .
@ -9,4 +8,4 @@ RUN yarn run build
FROM nginx:alpine FROM nginx:alpine
COPY --from=build /tmp/brouter-web/index.html /usr/share/nginx/html COPY --from=build /tmp/brouter-web/index.html /usr/share/nginx/html
COPY --from=build /tmp/brouter-web/dist /usr/share/nginx/html/dist COPY --from=build /tmp/brouter-web/dist /usr/share/nginx/html/dist
VOLUME [ "/usr/share/nginx/html" ] VOLUME [ "/usr/share/nginx/html" ]