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.
|
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"]
|