mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08:00
10 lines
162 B
Docker
10 lines
162 B
Docker
FROM microsoft/aspnetcore:2.0.3
|
|
|
|
WORKDIR /app
|
|
EXPOSE 80
|
|
COPY obj/Docker/publish .
|
|
|
|
COPY entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|