6 lines
No EOL
204 B
Docker
6 lines
No EOL
204 B
Docker
# Used in the build stage of the pipeline to create a frontend docker image
|
|
|
|
FROM nginx:alpine
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY /build /usr/share/nginx/html |