You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
282 B
12 lines
282 B
FROM postgres:14 AS base
|
|
|
|
RUN apt-get update && apt-get install -y locales-all \
|
|
&& locale-gen ru_RU.UTF-8 \
|
|
&& update-locale LANG=ru_RU.UTF-8
|
|
|
|
ENV LANG=ru_RU.UTF-8
|
|
ENV LC_NUMERIC=ru_RU.UTF-8
|
|
|
|
COPY ./db /docker-entrypoint-initdb.d
|
|
|
|
COPY init.sql /docker-entrypoint-initdb.d/
|