6 lines
90 B
Docker
6 lines
90 B
Docker
|
FROM nginx:alpine3.17-slim
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|