Files
dots-bot-api/Dockerfile
T
KKlochko 59c48d1984
continuous-integration/drone/push Build is passing
Add the docker files.
2023-06-21 15:22:03 +03:00

13 lines
192 B
Docker

FROM laradock/workspace:latest-8.2
ENV COMPOSER_ALLOW_SUPERUSER=1
WORKDIR /code
COPY . /code
RUN composer install --prefer-dist
COPY ./entrypoint.sh /
ENTRYPOINT ["sh", "/entrypoint.sh"]