12345678910111213141516171819 |
- FROM registry.sdsys.ru/centos:7.4.1708
- ENV LANG="en_US.UTF-8"
- ENTRYPOINT ["/docker-entrypoint.sh"]
- EXPOSE 3050
- COPY firebird.conf /etc/firebird/firebird.conf
- COPY docker-entrypoint.sh /docker-entrypoint.sh
- RUN set -x && \
- yum install -y epel-release && \
- curl https://copr.fedorainfracloud.org/coprs/makowski/firebird/repo/epel-7/makowski-firebird-epel-7.repo > /etc/yum.repos.d/makowski-firebird-epel-7.repo && \
- yum install -y firebird icu && \
- mkdir /var/run/firebird && \
- chown firebird. /var/run/firebird && \
- mkdir /data && \
- chown firebird. /data && \
- yum clean all && \
- chmod +x /docker-entrypoint.sh
- VOLUME /data
- CMD ["/usr/sbin/fbguard"]
|