Fix build output path

Change-Id: I6b77d9942324254b5312d80156f089b183a02201
This commit is contained in:
Manuel Stahl
2024-04-23 12:18:38 +02:00
parent 77be88402f
commit 1837733e07
4 changed files with 4 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ RUN yarn build
# App
FROM nginx:stable-alpine
COPY --from=builder /src/build /app
COPY --from=builder /src/dist /app
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html