File size: 190 Bytes
6286ce5 |
1 2 3 4 5 6 7 8 9 |
# serve the data with nginx
FROM nginx:alpine
# set the working folder in the container
WORKDIR /usr/share/nginx/html
# copy the nginx configuration
COPY ./index.html ./
COPY ./50x.html ./ |