9 lines
140 B
Docker
9 lines
140 B
Docker
|
FROM nginx:alpine
|
||
|
|
||
|
RUN mkdir /srv/www
|
||
|
|
||
|
COPY assets /usr/share/nginx/html/assets
|
||
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
EXPOSE 80
|