5 lines
167 B
Docker
5 lines
167 B
Docker
FROM postgres
|
|
ENV TZ=Europe/Moscow
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
COPY db.sql /docker-entrypoint-initdb.d/database.sql
|