4 lines
184 B
Docker
4 lines
184 B
Docker
FROM nginx:alpine
|
|
COPY index.html login.html register.html activate.html /usr/share/nginx/html/
|
|
COPY assets /usr/share/nginx/html/assets
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|