1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

add docker build for admin

This commit is contained in:
Kyle Spearrin
2018-03-23 21:11:17 -04:00
parent f07cb3ab07
commit 24b8619bd1
9 changed files with 67 additions and 0 deletions

9
src/Admin/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM microsoft/aspnetcore:2.0.5
WORKDIR /app
EXPOSE 80
COPY obj/Docker/publish .
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]