1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 13:08:17 -05:00
Vince Grassia a040509f81
Update FROM directive in Dockerfile (#5522)
(cherry picked from commit 7f0dd6d1c320bb9f8ec336cad11521ae98150fa0)
2025-03-18 16:10:16 -04:00

19 lines
400 B
Docker

FROM ghcr.io/bitwarden/server
LABEL com.bitwarden.product="bitwarden"
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gosu \
curl \
&& rm -rf /var/lib/apt/lists/*
ENV ASPNETCORE_URLS http://+:5000
EXPOSE 5000
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
HEALTHCHECK CMD curl -f http://localhost:5000/alive || exit 1
ENTRYPOINT ["/entrypoint.sh"]