-
Notifications
You must be signed in to change notification settings - Fork 621
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/docker support #90
base: main
Are you sure you want to change the base?
Conversation
- Add Dockerfile for containerization - Add docker-compose.yml for easy deployment - Add docker-entrypoint.sh for container initialization - Add configuration templates and documentation - Support API key configuration through environment variables - Add comprehensive Docker setup instructions Fixes microsoft#85
microsoft#85) - Add development environment with hot-reloading - Support both development and production modes - Update documentation with Docker usage instructions - Add troubleshooting guides - Improve configuration options - Update DEVELOPMENT.md with Docker instructions Fixes microsoft#85
@microsoft-github-policy-service agree |
Thanks! Does it also work on Windows? I see a .sh file |
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Node.js and yarn | ||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason why you use Node v18 here? How about using the more recent v20 (maintenance LTS) or v22 (active LTS)? https://nodejs.org/en/about/previous-releases
I tried running, I got this error: => [data-formulator-dev development 4/12] WORKDIR /app 0.2s
=> [data-formulator-dev development 5/12] RUN mkdir -p /app/config 0.5s
=> ERROR [data-formulator-dev development 6/12] COPY docker-entrypoint.sh /app/ 0.0s |
Fixes #85