mirror of
https://github.com/Sysbot-org/tgscraper.git
synced 2025-01-13 12:17:33 +01:00
11 lines
188 B
Docker
11 lines
188 B
Docker
|
FROM composer:latest AS tgscraper
|
||
|
|
||
|
MAINTAINER Sys <sys@sys001.ml>
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . .
|
||
|
RUN composer install
|
||
|
WORKDIR /artifacts
|
||
|
VOLUME /artifacts
|
||
|
|
||
|
ENTRYPOINT ["php", "/app/bin/tgscraper"]
|