9 lines
162 B
Docker
9 lines
162 B
Docker
|
# Fetching the base image
|
||
|
FROM nginx:1.25.3-alpine
|
||
|
|
||
|
# Copying configuration file
|
||
|
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
# Exposing port
|
||
|
EXPOSE 8001
|