5 lines
168 B
Docker
5 lines
168 B
Docker
|
|
# Static files, nothing more: a manifest and the APK it points at.
|
||
|
|
FROM nginx:alpine
|
||
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
|
COPY public/ /usr/share/nginx/html/
|