Skip to content

Commit

Permalink
Add missing dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
atrakic committed Sep 19, 2024
1 parent 187cb76 commit 7691347
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/sqlpackage/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0
WORKDIR /app

RUN set -x \
&& dotnet tool update --global microsoft.sqlpackage

ENV PATH="${PATH}:/root/.dotnet/tools"
ENV TZ="Etc/UTC"

COPY --chmod=0755 entrypoint.sh /usr/local/bin/
ENTRYPOINT ["entrypoint.sh"]
1 change: 1 addition & 0 deletions docker/sqlpackage/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sqlpackage /Version

0 comments on commit 7691347

Please sign in to comment.