mirror of
https://github.com/dokku/dokku.git
synced 2025-12-15 19:47:42 +01:00
30 lines
1.1 KiB
Docker
30 lines
1.1 KiB
Docker
FROM dokku/dokku:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install --no-install-recommends -y build-essential file nano && \
|
|
apt-get install --no-install-recommends -y software-properties-common help2man shellcheck uuid-runtime wget xmlstarlet && \
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove --yes && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ARG TARGETARCH
|
|
COPY common.mk common.mk
|
|
RUN GOLANG_VERSION=$(grep BUILD_IMAGE common.mk | cut -d' ' -f3 | cut -d':' -f2) && \
|
|
wget https://dl.google.com/go/go${GOLANG_VERSION}.linux-${TARGETARCH}.tar.gz && \
|
|
tar -xvf go${GOLANG_VERSION}.linux-${TARGETARCH}.tar.gz && \
|
|
mv go /usr/local
|
|
|
|
RUN GOROOT=/usr/local/go /usr/local/go/bin/go install golang.org/x/tools/gopls@latest 2>&1
|
|
|
|
ADD https://raw.githubusercontent.com/dokku/dokku/master/tests/dhparam.pem /mnt/dokku/etc/nginx/dhparam.pem
|
|
|
|
COPY .devcontainer/bin/ /usr/local/bin/
|
|
COPY ["tests.mk", "Makefile"]
|
|
RUN make ci-dependencies
|
|
|
|
COPY . .
|
|
|
|
ENV DOKKU_HOSTNAME=dokku.me GOROOT=/usr/local/go PATH=/usr/local/go/bin:/root/go/bin:$PATH PLUGIN_MAKE_TARGET=build
|
|
|
|
LABEL org.label-schema.schema-version=1.0 org.label-schema.vendor=dokku com.dokku.devcontainer=true
|