onedev/docker/Dockerfile
2020-05-02 18:08:29 +08:00

9 lines
279 B
Docker

# Build the docker image for onedev server
FROM ubuntu:18.04
COPY app /app
COPY entrypoint.sh idle.sh /root/bin/
COPY kubectl /usr/local/bin/
RUN apt-get update && apt-get install -y docker.io iproute2 curl git openjdk-8-jre-headless
EXPOSE 6610
CMD ["/root/bin/entrypoint.sh"]