4 lines
124 B
Docker
4 lines
124 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache nginx
|
|
COPY /source /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/nginx.conf |