8 lines
188 B
Docker
8 lines
188 B
Docker
FROM nginx:1.23.2-alpine
|
|
|
|
RUN mkdir -p /usr/share/nginx/html/static/frontend
|
|
##COPY index.html /usr/share/nginx/html/static/frontend/.
|
|
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
|