12 lines
252 B
Docker
12 lines
252 B
Docker
FROM nginx:1.21.6-alpine
|
|
|
|
# Nginx conf
|
|
COPY ./conf/html /var/www/html
|
|
COPY ./conf/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Entrypoint
|
|
COPY ./entrypoint.sh /usr/local/bin
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
CMD /usr/local/bin/entrypoint.sh
|