Rename frontend to web

This commit is contained in:
Florian Hoss 2023-07-04 23:20:47 +02:00
parent f63210272d
commit c135c604f0
59 changed files with 13 additions and 7 deletions

View file

@ -19,12 +19,12 @@ RUN go build -ldflags="-s -w" cmd/cafe-plaetschwiesle/cafe-plaetschwiesle.go
FROM node:${NODE_VERSION}-alpine AS nodeBuilder
WORKDIR /app
COPY ./frontend/package.json .
COPY ./frontend/yarn.lock .
COPY ./web/package.json .
COPY ./web/yarn.lock .
RUN yarn install --frozen-lockfile
COPY --from=goBuilder /app/docs/swagger.json ../docs/swagger.json
COPY ./frontend/ .
COPY ./web/ .
RUN yarn run types:openapi
RUN yarn run build