Skip to content

Commit

Permalink
fix: Dockerfile command syntax (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ong authored and bethesque committed Mar 27, 2019
1 parent 11212b4 commit ca05b9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
FROM phusion/passenger-ruby24:1.0.5

# Update OS as per https://github.com/phusion/passenger-docker#upgrading-the-operating-system-inside-the-container
RUN apt-get update & \
apt-get upgrade -y -o Dpkg::Options::="--force-confold" & \
apt-get -qy autoremove & \
apt-get clean & \
RUN apt-get update && \
apt-get upgrade -y -o Dpkg::Options::="--force-confold" && \
apt-get -qy autoremove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN bash -lc 'rvm --default use ruby-2.4.5'
Expand Down

0 comments on commit ca05b9d

Please sign in to comment.