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