diff --git a/Dockerfile b/Dockerfile index 8ad798f..353930a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,9 @@ COPY . /source # Install dependencies RUN cd source && composer install +# Create binary symlink +RUN ln -s /source/bin/onesky /bin/onesky && chmod +x /bin/onesky + # The project folder WORKDIR "/project"