All checks were successful
Build and Push Docker Image / Build (push) Successful in 21s
5 lines
No EOL
158 B
Docker
5 lines
No EOL
158 B
Docker
FROM nginx:stable-alpine
|
|
COPY build/client /usr/share/nginx/html
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"] |