diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 6790180..a666b88 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/Dockerfile b/Dockerfile index dbc8637..5beb626 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,9 @@ COPY . . RUN yarn build -FROM scratch +FROM nginx:1.25-alpine -WORKDIR /app +# Copy compiled assets from the builder stage +COPY --from=builder /app/dist/public /usr/share/nginx/html -COPY --from=builder /app/build ./build - -CMD ["sh"] +EXPOSE 80