Skip to content

Commit

Permalink
Fix missing directory
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocode authored Nov 21, 2018
1 parent d3307f5 commit b165608
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ ENV BAMBOO_VERSION 6.7.1
# Install Atlassian Bamboo and helper tools and setup initial home
# directory structure.
RUN set -x \
&& mkdir -p "${BAMBOO_HOME}/lib" "${BAMBOO_INSTALL}" \
&& addgroup -S bamboo \
&& adduser -S -h "${BAMBOO_HOME}" bamboo bamboo \
&& apk add --no-cache curl xmlstarlet git openssh bash ttf-dejavu libc6-compat tzdata \
&& mkdir -p "${BAMBOO_HOME}/lib" \
&& chmod -R 700 "${BAMBOO_HOME}" \
&& chown -R bamboo:bamboo "${BAMBOO_HOME}" \
&& mkdir -p "${BAMBOO_INSTALL}" \
&& curl -Ls "https://www.atlassian.com/software/bamboo/downloads/binary/atlassian-bamboo-${BAMBOO_VERSION}.tar.gz" | tar -zx --directory "${BAMBOO_INSTALL}" --strip-components=1 --no-same-owner \
&& curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.40.tar.gz" | tar -xz --directory "${BAMBOO_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.40/mysql-connector-java-5.1.40-bin.jar" \
&& chmod -R 700 "${BAMBOO_INSTALL}" \
Expand Down

0 comments on commit b165608

Please sign in to comment.