Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 18e3402

Browse files
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # Dockerfile
2 parents 4b83dd0 + d803590 commit 18e3402

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM oraclelinux:7
33

44
RUN rpm --import https://yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs && \
55
rpm -ivh http://yum.puppetlabs.com/el/7/products/x86_64/puppetlabs-release-7-11.noarch.rpm && \
6-
yum -y install hostname.x86_64 rubygems ruby-devel gcc git unzip && \
6+
yum -y install hostname.x86_64 rubygems ruby-devel gcc git unzip dos2unix && \
77
echo "gem: --no-ri --no-rdoc" > ~/.gemrc && \
88
yum install -y --skip-broken puppet tar && \
99
gem install librarian-puppet && \
@@ -32,7 +32,8 @@ RUN chmod -R 777 /software && \
3232
EXPOSE 1521
3333

3434
ADD startup.sh /
35-
RUN chmod 0755 /startup.sh
35+
RUN dos2unix -o /startup.sh && \
36+
chmod 0755 /startup.sh
3637

3738
WORKDIR /
3839

startup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ echo "Done"
1515

1616
echo "Show all ora processes, should see listener and ora db processes"
1717

18-
ps -ef | grep ora
18+
ps -ef | grep -i ora

0 commit comments

Comments
 (0)