Initial commit
Some checks failed
Deploy / build (push) Failing after 9s

This commit is contained in:
Круглицкий Никита Витальевич 2025-11-20 22:01:34 +06:00
parent b52536b2aa
commit eed93b911d

View File

@ -6,10 +6,10 @@ RUN yarn install
COPY . .
RUN yarn build
FROM nginx:stable-alpine
FROM httpd:latest-alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/dist /usr/local/apache2/htdocs/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
#CMD ["nginx", "-g", "daemon off;"]