mirror of
https://github.com/theonedev/onedev.git
synced 2026-01-25 14:44:32 +00:00
9 lines
279 B
Docker
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"]
|