funquail/front/Dockerfile

15 lines
452 B
Text
Raw Normal View History

FROM node:16 as builder
WORKDIR /app
COPY package.json yarn.lock /app/
COPY src /app/src/
COPY scripts /app/scripts
COPY public /app/public
COPY vite.config.js index.html embed.html /app/
2018-03-02 00:14:55 +01:00
RUN yarn install
RUN yarn build:deployment
2018-04-16 21:00:56 +02:00
FROM nginx:1.23.0-alpine as final
COPY --from=builder /app/dist /usr/share/nginx/html
COPY docker/funkwhale.template /etc/nginx/conf.d/funkwhale.template
COPY docker/funkwhale_proxy.conf /etc/nginx/funkwhale_proxy.conf