10 lines
162 B
Docker
10 lines
162 B
Docker
FROM nginx:latest
|
|
|
|
ADD ./ /frontend
|
|
|
|
RUN mv ./frontend/Private/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
RUN mv ./frontend/Public/* /usr/share/nginx/html/
|
|
|
|
CMD ["nginx"]
|