core-legacy/Dockerfile

17 lines
236 B
Text
Raw Normal View History

2019-08-17 09:04:15 +00:00
FROM drogonframework/drogon-arm AS installer
2019-08-06 22:01:01 +00:00
ENV CORE_ROOT=$IROOT/core
COPY . $CORE_ROOT
WORKDIR $CORE_ROOT
RUN ./build.sh
2019-08-17 09:04:15 +00:00
FROM drogonframework/drogon-arm
2019-08-17 00:07:01 +00:00
2019-08-17 09:04:15 +00:00
COPY --from=installer /bin/core /bin/core
2019-08-17 00:07:01 +00:00
EXPOSE 5000
2019-08-17 09:04:15 +00:00
ENTRYPOINT ["core"]