Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for Kaniko build on GitLab runner #33

Open
wants to merge 2 commits into
base: 5.0.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ENV PGVERSION 10
ENV PGDATA /var/lib/pgsql/10/data

# Create run directory (using /run for Kaniko build)
RUN install -dv --mode=775 --owner=postgres --group=postgres /var/run/postgresql /run/postgresql
RUN install -dv --mode=775 --owner=postgres --group=postgres /run/postgresql

# Initialize the database
RUN su - postgres -c "/usr/pgsql-10/bin/pg_ctl init"
Expand Down Expand Up @@ -64,6 +64,9 @@ COPY rsyslog/owamp-syslog.conf /etc/rsyslog.d/owamp-syslog.conf

# -----------------------------------------------------------------------------

# Create httpd run directory for httpd (using /run for Kaniko build on GitLab runner)
RUN install -dv /run/httpd

RUN mkdir -p /var/log/supervisor
ADD supervisord.conf /etc/supervisord.conf

Expand Down