mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
complement-synapse: COPY existing dir from base
The base postgres image already has the /var/run/postgresql directory, and COPY can set file ownership with chown=, so COPY it instead of making it from scratch & manually setting its ownership.
This commit is contained in:
parent
3c188231c7
commit
018fbd985e
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ FROM $FROM
|
|||
RUN adduser --system --uid 999 postgres --home /var/lib/postgresql
|
||||
COPY --from=postgres_base /usr/lib/postgresql /usr/lib/postgresql
|
||||
COPY --from=postgres_base /usr/share/postgresql /usr/share/postgresql
|
||||
RUN mkdir /var/run/postgresql && chown postgres /var/run/postgresql
|
||||
COPY --from=postgres_base --chown=postgres /var/run/postgresql /var/run/postgresql
|
||||
ENV PATH="${PATH}:/usr/lib/postgresql/13/bin"
|
||||
ENV PGDATA=/var/lib/postgresql/data
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue