1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-27 19:49:42 +01:00

18 lines
338 B
Docker
Raw Normal View History

2017-10-02 21:27:44 -04:00
FROM bitwarden/server
2017-08-07 17:07:56 -04:00
LABEL com.bitwarden.product="bitwarden"
2018-03-27 15:44:25 -04:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
&& rm -rf /var/lib/apt/lists/*
2018-03-26 11:24:09 -04:00
ENV ASPNETCORE_URLS http://+:5000
2017-08-07 17:07:56 -04:00
WORKDIR /app
2018-03-26 11:24:09 -04:00
EXPOSE 5000
2018-07-18 15:21:51 -04:00
COPY ./build .
2018-03-26 11:24:09 -04:00
COPY entrypoint.sh /
2018-04-16 15:17:13 -04:00
RUN chmod +x /entrypoint.sh
2017-08-07 17:07:56 -04:00
ENTRYPOINT ["/entrypoint.sh"]