1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

running as bitwarden user

This commit is contained in:
Kyle Spearrin
2018-03-23 21:58:45 -04:00
parent e499087a57
commit 19fa9bf806
10 changed files with 57 additions and 15 deletions

View File

@ -1,5 +1,6 @@
FROM microsoft/aspnetcore:2.0.5
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
cron \
@ -7,17 +8,23 @@ RUN apt-get update \
RUN groupadd -g 999 bitwarden && \
useradd -r -u 999 -g bitwarden bitwarden
USER bitwarden
USER bitwarden
WORKDIR /app
EXPOSE 80
COPY obj/Docker/publish/Api .
COPY obj/Docker/publish/Jobs /jobs
USER root
RUN mv /jobs/crontab /etc/cron.d/bitwarden-cron \
&& chmod 0644 /etc/cron.d/bitwarden-cron \
&& touch /var/log/cron.log
USER bitwarden
COPY entrypoint.sh /
USER root
RUN chmod +x /entrypoint.sh
USER bitwarden
ENTRYPOINT ["/entrypoint.sh"]