Skip to content

Commit

Permalink
Revert "Fix path after moving Dockerfiles"
Browse files Browse the repository at this point in the history
This reverts commit fc95b6d.
  • Loading branch information
u222471 committed Jan 3, 2018
1 parent fc95b6d commit 2180027
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions alpine/lazydl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ RUN mkdir -p /opt/android-sdk-linux \
&& adduser android -D -S -G android -h /opt/android-sdk-linux

# Copy Tools
COPY ../../tools /opt/tools
COPY tools /opt/tools

# Copy Licenses
COPY ../../licenses /opt/licenses
COPY licenses /opt/licenses

# Working Directory
WORKDIR /opt/android-sdk-linux

CMD /opt/tools/entrypoint.sh lazy-dl
CMD /opt/tools/entrypoint.sh lazy-dl
6 changes: 3 additions & 3 deletions alpine/standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ RUN mkdir -p /opt/android-sdk-linux \
&& adduser android -D -S -G android -h /opt/android-sdk-linux

# Copy Tools
COPY ../../tools /opt/tools
COPY tools /opt/tools

# Copy Licenses
COPY ../../licenses /opt/licenses
COPY licenses /opt/licenses

# Working Directory
WORKDIR /opt/android-sdk-linux

RUN /opt/tools/entrypoint.sh built-in
CMD /opt/tools/entrypoint.sh built-in
CMD /opt/tools/entrypoint.sh built-in
4 changes: 2 additions & 2 deletions ubuntu/lazydl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ RUN dpkg --add-architecture i386 && apt-get update -yqq && apt-get install -y \

RUN groupadd android && useradd -d /opt/android-sdk-linux -g android android

COPY ../../tools /opt/tools
COPY tools /opt/tools

COPY ../../licenses /opt/licenses
COPY licenses /opt/licenses

WORKDIR /opt/android-sdk-linux

Expand Down
4 changes: 2 additions & 2 deletions ubuntu/standalone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ RUN apt-get update -yqq && apt-get install -y gcc make \

RUN groupadd android && useradd -d /opt/android-sdk-linux -g android android

COPY ../../tools /opt/tools
COPY tools /opt/tools

COPY ../../licenses /opt/licenses
COPY licenses /opt/licenses

WORKDIR /opt/android-sdk-linux

Expand Down

0 comments on commit 2180027

Please sign in to comment.