Dockerfile-v2 324 B

12345678910111213
  1. FROM hub.evbj.easou.com/qa/book-api:v1c
  2. ENV LANG en_US.UTF-8
  3. COPY resin.properties /app/soft/resin-4.0.65/conf/resin.properties
  4. COPY skywalking-agent.tgz /tmp/skywalking-agent.tgz
  5. RUN tar -zxf /tmp/skywalking-agent.tgz -C /app/soft/ && rm -f /tmp/skywalking-agent.tgz
  6. ENTRYPOINT ["entrypoint.sh"]
  7. CMD ["supervisord"]