-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] Dockerfile and class optimizations
- Loading branch information
Showing
4 changed files
with
170 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Use the official Microsoft SQL Server image as the base image | ||
FROM mcr.microsoft.com/mssql/server:2022-latest | ||
|
||
# Set environment variables for non-interactive installation | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Set the password for the SQL Server 'sa' user | ||
ENV SA_PASSWORD=vSk60DcYRU | ||
|
||
# Set the ACCEPT_EULA environment variable to accept the EULA | ||
ENV ACCEPT_EULA=Y | ||
|
||
# Expose SQL Server port | ||
EXPOSE 1433 | ||
|
||
# Start SQL Server | ||
CMD ["/opt/mssql/bin/sqlservr"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.9.7 | ||
0.9.8 |
Oops, something went wrong.