- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
20 lines
1.1 KiB
Docker
20 lines
1.1 KiB
Docker
FROM mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm
|
|
|
|
# Install SQL Tools: SQLPackage and sqlcmd
|
|
COPY mssql/installSQLtools.sh installSQLtools.sh
|
|
RUN bash ./installSQLtools.sh && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts
|
|
|
|
# RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
|
# echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list && \
|
|
# apt-get update && apt-get install -y google-chrome-stable xvfb
|
|
# [Optional] Uncomment this section to install additional OS packages.
|
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
|
|
|
ENV ASPNETCORE_HTTP_PORTS=5000
|
|
|
|
EXPOSE 4200
|
|
# [Optional] Uncomment this line to install global node packages.
|
|
RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install --lts && nvm use --lts && npm install -g typescript" 2>&1
|
|
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
|