2021-03-05 22:00:32 +01:00
|
|
|
FROM node:lts AS build
|
2020-05-24 15:06:47 +02:00
|
|
|
|
2020-05-20 18:46:58 +02:00
|
|
|
WORKDIR /app
|
2021-03-05 22:00:32 +01:00
|
|
|
COPY package.json yarn.lock ./
|
2022-01-30 12:45:22 +01:00
|
|
|
RUN yarn install --prod
|
2020-05-24 15:06:47 +02:00
|
|
|
|
2021-03-05 22:00:32 +01:00
|
|
|
COPY . ./
|
|
|
|
RUN yarn build
|
2020-05-24 22:44:21 +02:00
|
|
|
|
2021-03-05 22:00:32 +01:00
|
|
|
FROM ratisbonacoding/nginx-cloudflare-cache
|
|
|
|
COPY --from=build /app/build /app
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|