1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-29 13:25:17 +01:00
bitwarden-server/src/Icons/Dockerfile

22 lines
554 B
Docker
Raw Normal View History

2018-02-22 16:17:27 +01:00
FROM microsoft/aspnetcore:2.0.5
2017-10-23 15:27:47 +02:00
2017-10-23 23:59:42 +02:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
unzip \
&& rm -rf /var/lib/apt/lists/*
2017-10-24 15:14:05 +02:00
WORKDIR /tmp
COPY iconserver.sha256 .
2018-02-22 16:29:24 +01:00
RUN curl -L -o iconserver.zip https://github.com/mat/besticon/releases/download/v3.6.0/iconserver_linux_amd64.zip \
2017-10-24 15:14:05 +02:00
&& sha256sum -c iconserver.sha256 \
&& unzip iconserver.zip -d /etc/iconserver \
&& rm iconserver.*
2017-10-23 23:59:42 +02:00
2017-10-23 15:27:47 +02:00
WORKDIR /app
EXPOSE 80
COPY obj/Docker/publish .
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]