insomnia/.github/actions/build-ubuntu14/Dockerfile
Gregory Schier 54a524a55c Fix linux?
2019-10-09 17:54:44 -07:00

18 lines
532 B
Docker

FROM ubuntu:14.04
LABEL "name"="Insomnia-Ubuntu-14"
LABEL "maintainer"="Gregory Schier <gschier1990@gmail.com>"
LABEL "version"="1.0.0"
LABEL "com.github.actions.icon"="package"
LABEL "com.github.actions.color"="blue"
LABEL "com.github.actions.name"="Insomnia Ubuntu 14"
LABEL "com.github.actions.description"="Do the stuff"
COPY entrypoint.sh /scripts/entrypoint.sh
COPY install-dependencies.sh /scripts/install-dependencies.sh
RUN chmod +x /scripts/*
RUN /scripts/install-dependencies.sh
ENTRYPOINT ["/scripts/entrypoint.sh"]