Browse Source

Enable MsSqlMigratorUtility Dockerfile to run with additional parameters (#3348)

pull/3332/head
Michał Chęciński 2 years ago committed by GitHub
parent
commit
f7349b4ff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .github/CODEOWNERS
  2. 4
      util/MsSqlMigratorUtility/Dockerfile

5
.github/CODEOWNERS

@ -9,6 +9,11 @@ @@ -9,6 +9,11 @@
# DevOps for Actions and other workflow changes.
.github/workflows @bitwarden/dept-devops
# DevOps for Docker changes.
**/Dockerfile @bitwarden/dept-devops
**/*.Dockerfile @bitwarden/dept-devops
**/.dockerignore @bitwarden/dept-devops
## Auth team files ##
**/Auth @bitwarden/team-auth-dev
bitwarden_license/src/Sso @bitwarden/team-auth-dev

4
util/MsSqlMigratorUtility/Dockerfile

@ -5,4 +5,6 @@ LABEL com.bitwarden.product="bitwarden" @@ -5,4 +5,6 @@ LABEL com.bitwarden.product="bitwarden"
WORKDIR /app
COPY obj/build-output/publish .
CMD ["sh", "-c", "dotnet /app/MsSqlMigratorUtility.dll \"${MSSQL_CONN_STRING}\" -v"]
ENTRYPOINT ["sh", "-c", "dotnet /app/MsSqlMigratorUtility.dll \"${MSSQL_CONN_STRING}\""]
CMD [ "-v" ]

Loading…
Cancel
Save