1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/Attachments/Dockerfile

16 lines
305 B
Docker
Raw Normal View History

2017-10-03 03:27:31 +02:00
FROM bitwarden/server
2018-03-27 20:55:33 +02:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
&& rm -rf /var/lib/apt/lists/*
2018-03-26 17:21:03 +02:00
ENV ASPNETCORE_URLS http://+:5000
EXPOSE 5000
COPY entrypoint.sh /
2018-03-26 17:21:03 +02:00
RUN groupadd -g 999 bitwarden \
2018-03-27 20:55:33 +02:00
&& chmod +x /entrypoint.sh
2018-03-26 17:21:03 +02:00
ENTRYPOINT ["/entrypoint.sh"]