mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
This cannot be used in codespaces due to the extra mount, but it does allow for local development.
18 lines
501 B
Docker
18 lines
501 B
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 shellcheck xmlstarlet && \
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove --yes && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ADD https://raw.githubusercontent.com/dokku/dokku/master/tests/dhparam.pem /mnt/dokku/etc/nginx/dhparam.pem
|
|
|
|
COPY .devcontainer/bin/ /usr/local/bin/
|
|
COPY . .
|
|
|
|
RUN make ci-dependencies
|
|
|
|
ENV DOKKU_HOSTNAME=dokku.me
|