Skip to content

Commit

Permalink
chore: fix entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Holshausen committed Oct 29, 2020
1 parent 3011405 commit 7bf5881
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions native/Dockerfile.musl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG NODE_VERSION=14

RUN apk add --no-cache curl bash python3 gcc musl-dev libstdc++ ca-certificates openssl ncurses coreutils python2 make g++ libgcc linux-headers grep util-linux binutils findutils perl

RUN mkdir -p /github/workspace /github/home/bin
RUN mkdir -p /github/workspace /github/home/bin /entrypoint
RUN chmod -R 777 /github
RUN touch /github/home/.bashrc && touch /github/home/.profile
ENV HOME /github/home
Expand All @@ -28,6 +28,6 @@ ENV RUSTONIG_STATIC_LIBONIG=1
ENV RUSTONIG_SYSTEM_LIBONIG=0
ENV OPENSSL_STATIC=1

COPY build-native.sh /github/home/bin/
COPY build-native.sh /entrypoint/
WORKDIR /github/workspace
ENTRYPOINT [ "/github/home/bin/build-native.sh" ]
ENTRYPOINT [ "/entrypoint/build-native.sh" ]

0 comments on commit 7bf5881

Please sign in to comment.