fix Dockerfile

This commit is contained in:
whidix
2022-12-31 17:46:31 +01:00
parent 39061b759d
commit 41fc3cdbfc
2 changed files with 2 additions and 2 deletions

View File

@@ -9,4 +9,4 @@ COPY . ./
RUN npm run build RUN npm run build
FROM nginx:latest FROM nginx:latest
COPY --from=build /app/public /usr/share/nginx/html COPY --from=build /app/build /usr/share/nginx/html

View File

@@ -15,7 +15,7 @@ const config = {
], ],
kit: { kit: {
adapter: adapter({ out: 'public' }) adapter: adapter()
} }
}; };