mirror of
https://github.com/replicatedhq/ttl.sh.git
synced 2026-05-06 00:16:37 +00:00
12 lines
299 B
Docker
12 lines
299 B
Docker
FROM nginx:latest
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY src/favicon.ico /usr/share/nginx/html/
|
|
COPY src/index.htm /usr/share/nginx/html/
|
|
COPY src/ttlsh_files /usr/share/nginx/html/ttlsh_files/
|
|
|
|
ADD entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["nginx", "-g", "daemon off;"] |