2023-03-20 11:04:14 +00:00
|
|
|
FROM ubuntu:22.04
|
|
|
|
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
# https://download.docker.com/linux/static/stable/
|
2023-05-15 14:21:30 +02:00
|
|
|
ARG DOCKER_VERSION=23.0.5
|
2023-03-20 11:04:14 +00:00
|
|
|
# https://github.com/docker/compose/releases
|
2023-05-15 14:21:30 +02:00
|
|
|
ARG DOCKER_COMPOSE_VERSION=2.17.3
|
|
|
|
# https://github.com/docker/buildx/releases
|
|
|
|
ARG DOCKER_BUILDX_VERSION=0.10.4
|
2023-03-20 11:04:14 +00:00
|
|
|
# https://github.com/buildpacks/pack/releases
|
2023-05-15 14:21:30 +02:00
|
|
|
ARG PACK_VERSION=0.29.0
|
|
|
|
# https://github.com/railwayapp/nixpacks/releases
|
|
|
|
ARG NIXPACKS_VERSION=1.6.1
|
2023-03-20 11:04:14 +00:00
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV TZ=UTC
|
|
|
|
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install -y gnupg gosu curl ca-certificates zip unzip git git-lfs supervisor \
|
2023-05-15 14:21:30 +02:00
|
|
|
sqlite3 libcap2-bin libpng-dev python2 dnsutils openssh-server sudo \
|
2023-03-20 11:04:14 +00:00
|
|
|
&& apt-get -y autoremove \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
|
|
|
|
# Setup sshd
|
|
|
|
RUN ssh-keygen -A
|
|
|
|
RUN mkdir -p /run/sshd
|
|
|
|
|
2023-05-15 14:21:30 +02:00
|
|
|
RUN if [[ ${TARGETPLATFORM} == 'linux/amd64' ]]; then \
|
|
|
|
curl -sSL https://github.com/docker/buildx/releases/download/v${DOCKER_BUILDX_VERSION}/buildx-v${DOCKER_BUILDX_VERSION}.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx && \
|
|
|
|
curl -sSL https://github.com/docker/compose/releases/download/v${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose && \
|
|
|
|
(curl -sSL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz | tar -C /usr/bin/ --no-same-owner -xzv --strip-components=1 docker/docker) && \
|
|
|
|
(curl -sSL https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz | tar -C /usr/local/bin/ --no-same-owner -xzv pack) && \
|
|
|
|
curl -sSL https://nixpacks.com/install.sh | bash && \
|
|
|
|
chmod +x ~/.docker/cli-plugins/docker-compose /usr/bin/docker /usr/local/bin/pack /root/.docker/cli-plugins/docker-buildx \
|
|
|
|
;fi
|
2023-03-20 11:04:14 +00:00
|
|
|
RUN groupadd docker
|
|
|
|
|
|
|
|
# Setup coolify user
|
|
|
|
RUN useradd -ms /bin/bash coolify
|
|
|
|
RUN usermod -aG sudo coolify
|
|
|
|
RUN usermod -aG docker coolify
|
|
|
|
RUN echo 'coolify ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
|
|
|
|
|
|
# Setup ssh'ing into the destination as Coolify User
|
|
|
|
USER coolify
|
|
|
|
RUN mkdir -p ~/.ssh
|
|
|
|
RUN echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuGmoeGq/pojrsyP1pszcNVuZx9iFkCELtxrh31QJ68 coolify@coolify-instance" >> ~/.ssh/authorized_keys
|
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
# Setup ssh'ing into the destination as Root
|
|
|
|
RUN mkdir -p ~/.ssh
|
|
|
|
RUN echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuGmoeGq/pojrsyP1pszcNVuZx9iFkCELtxrh31QJ68 coolify@coolify-instance" >> ~/.ssh/authorized_keys
|
|
|
|
|
|
|
|
EXPOSE 22
|
|
|
|
|
|
|
|
COPY start-container /usr/local/bin/start-container
|
|
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
RUN chmod +x /usr/local/bin/start-container
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
# Prepare projects
|
|
|
|
RUN mkdir -p projects
|
|
|
|
COPY dummy-project projects/dummy-project
|
|
|
|
|
|
|
|
ENTRYPOINT ["start-container"]
|