This commit is contained in:
Murphy 2025-02-07 15:41:01 -05:00
parent 39e38a7152
commit cb56ecfd97
Signed by: freya
GPG key ID: 9FBC6FFD6D2DBF17
2 changed files with 14 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine:latest
RUN apk add --no-cache php
COPY . /app
WORKDIR /app
CMD ["php", "-S", "0.0.0.0:80"]

6
docker-compose.yml Normal file
View file

@ -0,0 +1,6 @@
services:
rit:
build: .
restart: unless-stopped
ports:
- '80:80'