mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01: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"]
|