mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
19 lines
419 B
Docker
19 lines
419 B
Docker
FROM microsoft/mssql-server-linux:2017-CU5
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
cron \
|
|
gosu \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY crontab /etc/cron.d/bitwarden-cron
|
|
RUN chmod 0644 /etc/cron.d/bitwarden-cron
|
|
COPY backup-db.sql /
|
|
COPY backup-db.sh /
|
|
COPY entrypoint.sh /
|
|
|
|
RUN chmod +x /entrypoint.sh \
|
|
&& chmod +x /backup-db.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|