Copy ssh keys from a /keys directory

This commit is contained in:
zontreck 2024-11-09 00:15:47 -07:00
parent 77ace689f4
commit a36b55424f
2 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,7 @@ FROM git.zontreck.com/ariascreations/buildenvironments:debianbuild
ENV DOCKER_AGENT_SECRET NAN
ENV DOCKER_USER NAN
ENV DOCKER_PASSWORD NAN
ENV HOME /home/builder
RUN apt-get update && apt-get upgrade -y
@ -16,4 +17,8 @@ WORKDIR /
RUN curl -sO https://ci.zontreck.com/jnlpJars/agent.jar
RUN useradd -m -s /bin/bash builder
USER builder
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]