You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
9 lines
175 B
Docker
9 lines
175 B
Docker
FROM nginx:alpine
|
|||
|
|||
COPY ./support/docker/production/entrypoint.nginx.sh .
|
|||
RUN chmod +x entrypoint.nginx.sh
|
|||
|
|||
EXPOSE 80 443
|
|||
ENTRYPOINT []
|
|||
CMD ["/bin/sh", "entrypoint.nginx.sh"]
|