mirror of
https://github.com/rlister/dockerfiles.git
synced 2025-12-12 17:26:15 +00:00
13 lines
186 B
Docker
13 lines
186 B
Docker
FROM radial/busyboxplus:curl
|
|
|
|
MAINTAINER Ric Lister, rlister@gmail.com
|
|
|
|
WORKDIR /app
|
|
|
|
ADD ghcp /app/
|
|
RUN chmod 0755 ghcp
|
|
ADD ghcat /app/
|
|
RUN chmod 0755 ghcat
|
|
|
|
ENTRYPOINT [ "/app/ghcp" ]
|