mirror of
https://github.com/bitwarden/server
synced 2025-12-15 15:53:59 +00:00
10 lines
171 B
Docker
10 lines
171 B
Docker
FROM microsoft/mssql-server-linux
|
|
|
|
COPY setup.sql /
|
|
COPY setup.sh /
|
|
RUN chmod +x /setup.sh
|
|
|
|
COPY entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|