2018-03-24 02:11:17 +01:00
|
|
|
FROM microsoft/aspnetcore:2.0.5
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 80
|
|
|
|
COPY obj/Docker/publish .
|
2018-03-24 02:58:45 +01:00
|
|
|
|
2018-03-24 03:16:57 +01:00
|
|
|
COPY entrypoint.sh /
|
2018-03-24 02:11:17 +01:00
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|