You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
347 B
12 lines
347 B
FROM quay.io/fedora/fedora:38
|
|
|
|
# Unattended installation
|
|
ADD install-sqlcmd /usr/local/bin/install-sqlcmd
|
|
|
|
RUN dnf install -y expect \
|
|
&& curl -sSfL https://packages.microsoft.com/config/rhel/8/prod.repo -o /etc/yum.repos.d/msprod.repo \
|
|
&& /usr/local/bin/install-sqlcmd \
|
|
&& dnf clean all
|
|
|
|
ENTRYPOINT [ "/opt/mssql-tools/bin/sqlcmd" ]
|
|
CMD [ ]
|
|
|