Semaphore/Dockerfile
Matej Kramny 6bf40d5631 Update Dockerfile
- fix make.sh
2017-04-19 20:38:05 +01:00

16 lines
574 B
Docker

FROM alpine:3.5
ENV SEMAPHORE_VERSION="2.3.0" SEMAPHORE_ARCH="linux_amd64"
RUN apk add --no-cache git ansible mysql-client curl openssh-client && \
curl -sSfL "https://github.com/ansible-semaphore/semaphore/releases/download/v$SEMAPHORE_VERSION/semaphore_$SEMAPHORE_ARCH" > /usr/bin/semaphore && \
chmod +x /usr/bin/semaphore && mkdir -p /etc/semaphore/playbooks
EXPOSE 3000
ADD ./scripts/docker-startup.sh /usr/bin/semaphore-startup.sh
ENTRYPOINT ["/usr/bin/semaphore-startup.sh"]
CMD ["/usr/bin/semaphore", "-config", "/etc/semaphore/semaphore_config.json"]