Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
nginx
GitHub Repository: nginx/nginx.org
Path: blob/main/dev.Dockerfile
1 views
FROM nginx:alpine

RUN apk add perl perl-parse-recdescent libxml2-utils make inotify-tools

WORKDIR /var/www
COPY . /var/www
COPY tools/entrypoint.sh /docker-entrypoint.sh

ENTRYPOINT ["/docker-entrypoint.sh"]
EXPOSE 8080