All checks were successful
Build and Push Docker Image / build (push) Successful in 1m56s
4 lines
131 B
Docker
4 lines
131 B
Docker
FROM nginx:alpine AS runtime
|
|
COPY ./ci/docker/app/nginx.conf /etc/nginx/nginx.conf
|
|
COPY ./build/app /usr/share/nginx/html
|
|
EXPOSE 80 |