mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 13:23:04 +01:00
14 lines
196 B
Docker
14 lines
196 B
Docker
FROM linuxserver/nginx:arm32v7-latest
|
|
LABEL maintainer=henrywhitaker3@outlook.com
|
|
|
|
ENV arch='arm'
|
|
|
|
RUN apk add php82-tokenizer
|
|
|
|
COPY docker/conf/ /
|
|
COPY . /site
|
|
|
|
EXPOSE 80 443
|
|
|
|
VOLUME ["/config"]
|