mirror of
https://github.com/Sysbot-org/tgscraper.git
synced 2024-11-26 21:46:47 +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"] |