1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

Revert "running as bitwarden user"

This reverts commit 19fa9bf806.
This commit is contained in:
Kyle Spearrin
2018-03-23 22:16:57 -04:00
parent 19fa9bf806
commit f96911ed57
10 changed files with 15 additions and 57 deletions

View File

@ -1,26 +1,18 @@
FROM microsoft/mssql-server-linux:2017-CU4
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
cron \
&& rm -rf /var/lib/apt/lists/*
RUN groupadd -g 999 bitwarden && \
useradd -r -u 999 -g bitwarden bitwarden
COPY crontab /etc/cron.d/bitwarden-cron
RUN chmod 0644 /etc/cron.d/bitwarden-cron \
&& touch /var/log/cron.log
USER bitwarden
COPY backup-db.sql /
COPY backup-db.sh /
COPY entrypoint.sh /
USER root
RUN chmod +x /backup-db.sh
RUN chmod +x /entrypoint.sh
USER bitwarden
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]