We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2792398 commit a07a72cCopy full SHA for a07a72c
1 file changed
Dockerfile
@@ -69,13 +69,14 @@ RUN CHROME_PATH=$(find /root/.cache/puppeteer -name chrome -type f | head -n 1)
69
70
COPY dist/ liascript-exporter/
71
72
-EXPOSE 4000
73
-
74
# Create entrypoint script that sources the environment
75
RUN echo '#!/bin/sh\n\
76
export PUPPETEER_EXECUTABLE_PATH=$(find /root/.cache/puppeteer -name chrome -type f | head -n 1)\n\
77
exec node liascript-exporter/index.js "$@"' > /entrypoint.sh && \
78
chmod +x /entrypoint.sh
79
+EXPOSE 4000
+
80
ENTRYPOINT ["/entrypoint.sh"]
81
82
CMD ["serve", "--port", "4000"]
0 commit comments