-
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.
* #21 Update links * #21 Re-drive checks * #21 Re-drive checks * #21 Re-drive checks * #21 Re-drive checks * #21 Re-drive checks * #21 Pin the FROM sha
- Loading branch information
Showing
3 changed files
with
21 additions
and
20 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 |
---|---|---|
@@ -1 +1,2 @@ | ||
.DS_Store | ||
.history |
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,10 +1,10 @@ | ||
FROM adminer:4.8.1 | ||
FROM adminer:4.8.1@sha256:576c60c6b64c7fa773c63bc1be8d80213a0ad63ae67f47537d3088e49540640b | ||
|
||
ENV REFRESHED_AT=2022-09-29 | ||
|
||
LABEL Name="senzing/adminer" \ | ||
Maintainer="[email protected]" \ | ||
Version="1.0.2" | ||
Maintainer="[email protected]" \ | ||
Version="1.0.2" | ||
|
||
HEALTHCHECK CMD ["/app/healthcheck.sh"] | ||
|
||
|
@@ -15,20 +15,20 @@ USER root | |
# Install packages. | ||
|
||
RUN apk add \ | ||
--no-cache \ | ||
--virtual .php-ext-deps \ | ||
freetds \ | ||
unixodbc \ | ||
&& apk add \ | ||
--no-cache \ | ||
--virtual .build-deps \ | ||
freetds-dev \ | ||
unixodbc-dev \ | ||
&& docker-php-ext-configure pdo_odbc --with-pdo-odbc=unixODBC,/usr \ | ||
&& docker-php-ext-install \ | ||
pdo_odbc pdo_dblib \ | ||
&& apk del .build-deps \ | ||
&& rm -rf /var/cache/apk/* | ||
--no-cache \ | ||
--virtual .php-ext-deps \ | ||
freetds \ | ||
unixodbc \ | ||
&& apk add \ | ||
--no-cache \ | ||
--virtual .build-deps \ | ||
freetds-dev \ | ||
unixodbc-dev \ | ||
&& docker-php-ext-configure pdo_odbc --with-pdo-odbc=unixODBC,/usr \ | ||
&& docker-php-ext-install \ | ||
pdo_odbc pdo_dblib \ | ||
&& apk del .build-deps \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
# Copy files from repository. | ||
|
||
|
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