mlops_postgres / Dockerfile
Anuj-Panthri's picture
changed userid to 1000
90df87a
raw
history blame contribute delete
262 Bytes
FROM postgres
# RUN useradd -m -u 1000 postgres
WORKDIR /app
USER root
RUN id -u postgres
RUN usermod -u 1000 postgres
RUN mkdir -p /var/lib/postgresql/data && chown -R postgres:postgres /var/lib/postgresql/data
RUN id -u postgres
USER postgres
EXPOSE 5432