starter-docker-yarn-actions/Dockerfile

10 lines
211 B
Docker
Raw Normal View History

FROM cubetiq/calpine-docker:latest
LABEL maintainer="sombochea@cubetiqs.com"
2021-07-14 15:47:27 +07:00
RUN apk add --update --no-cache yarn
2021-03-26 20:55:58 +07:00
COPY ./entrypoint.sh /entrypoint.sh
2021-03-26 20:59:45 +07:00
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]