9 lines
106 B
Text
9 lines
106 B
Text
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache php
|
||
|
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
|
||
|
CMD ["php", "-S", "0.0.0.0:80"]
|