Skip to content

Commit

Permalink
[ADD] Dockerfile and class optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
jzsmoreno committed Dec 5, 2024
1 parent 93fd8f6 commit c34fc86
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 159 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
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"]

2 changes: 1 addition & 1 deletion pydbsmgr/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.7
0.9.8
Loading

0 comments on commit c34fc86

Please sign in to comment.