-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (17 loc) · 795 Bytes
/
Dockerfile
File metadata and controls
22 lines (17 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:22.04
LABEL version="1.0.0"
LABEL repository="https://github.com/convox/action-deploy"
LABEL homepage="https://convox.com/convox"
LABEL maintainer="Convox <[email protected]>"
LABEL "com.github.actions.name"="Convox Deploy"
LABEL "com.github.actions.description"="Build and Deploy an app to Convox in one step"
LABEL "com.github.actions.icon"="cloud"
LABEL "com.github.actions.color"="blue"
RUN apt-get -qq update \
&& apt-get -qq -y --no-install-recommends install ca-certificates curl \
&& rm -rf /var/lib/apt/lists/*
RUN curl -L https://github.com/convox/convox/releases/latest/download/convox-linux -o /tmp/convox \
&& mv /tmp/convox /usr/local/bin/convox \
&& chmod 755 /usr/local/bin/convox
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]