Files
server/util/Attachments/Dockerfile

19 lines
392 B
Docker
Raw Normal View History

2017-10-02 21:27:31 -04:00
FROM bitwarden/server
LABEL com.bitwarden.product="bitwarden"
2018-03-27 14:55:33 -04:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
2019-07-26 20:31:45 -04:00
curl \
&& rm -rf /var/lib/apt/lists/*
2018-03-27 14:55:33 -04:00
2018-03-26 11:21:03 -04:00
ENV ASPNETCORE_URLS http://+:5000
EXPOSE 5000
COPY entrypoint.sh /
2018-04-16 15:30:07 -04:00
RUN chmod +x /entrypoint.sh
2018-03-26 11:21:03 -04:00
2019-07-26 20:31:45 -04:00
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1
ENTRYPOINT ["/entrypoint.sh"]