9 lines
189 B
Docker
9 lines
189 B
Docker
|
|
FROM nginx:alpine
|
||
|
|
|
||
|
|
# strip the default site, install ours
|
||
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
||
|
|
COPY nginx.conf /etc/nginx/conf.d/raycer.conf
|
||
|
|
COPY public/ /usr/share/nginx/html/
|
||
|
|
|
||
|
|
EXPOSE 80
|