mirror of
https://github.com/demostf/migrate.git
synced 2026-06-03 17:24:10 +02:00
initial version
This commit is contained in:
parent
8b64b8c31c
commit
45e0d21d05
1 changed files with 12 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
FROM php:7.1-alpine
|
||||
|
||||
COPY . /app
|
||||
RUN apk add --no-cache wget \
|
||||
&& wget https://getcomposer.org/composer.phar \
|
||||
&& php composer.phar -d=/app install --no-dev --no-interaction \
|
||||
&& rm composer.phar \
|
||||
&& apk del wget
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
CMD [ "php", "./migrate.php" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue