error-handling #1

Merged
stwhite merged 24 commits from error-handling into main 2024-10-30 15:19:49 +00:00
2 changed files with 6 additions and 4 deletions
Showing only changes of commit bd32bfaae5 - Show all commits

View File

@ -1,3 +1,5 @@
node_modules
.git
*.log
build
.DS_Store

View File

@ -16,8 +16,8 @@ COPY . .
# Build the application
RUN npm run build
# Final stage: nothing needed, just to complete the multi-stage
FROM scratch
# Final stage: Use a minimal base image
FROM alpine:latest
# Copy the build output from the previous stage to a directory
# Copy the build output from the previous stage
COPY --from=build-stage /app/build ./build