mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
10 lines
162 B
Docker
10 lines
162 B
Docker
|
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"]
|