All checks were successful
Build and Push Docker Image / build-and-push (release) Successful in 48s
8 lines
101 B
Plaintext
8 lines
101 B
Plaintext
FROM nginx:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY src/ /usr/share/nginx/html
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|