dea8773ff6
Adds a iframe view for apps in the dashboard. Makes it usable for our setup. Co-authored-by: Philipp Rothmann <philipprothmann@posteo.de> Co-authored-by: viehlieb <pf@pragma-shift.net> Reviewed-on: #1
11 lines
245 B
Docker
11 lines
245 B
Docker
FROM node:14-alpine AS BUILDER
|
|
|
|
WORKDIR /app
|
|
COPY package.json yarn.lock /app/
|
|
RUN yarn install
|
|
COPY . /app
|
|
RUN yarn build
|
|
|
|
FROM nginx:latest
|
|
COPY deployment/nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=builder /app/build /usr/share/nginx/html
|