16 lines
438 B
Docker
16 lines
438 B
Docker
FROM busybox
|
|
|
|
LABEL version="202111B"
|
|
LABEL description="martiLQ Go web UI by Meerkat Manor "
|
|
LABEL authors="meerkat@merebox.com"
|
|
|
|
COPY ./src/static /martilq/static
|
|
COPY ./src/main /martilq/main
|
|
COPY ./src/docs /martilq/docs
|
|
COPY ./src/template /martilq/template
|
|
COPY ./src/data /martilq/data
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT exec /martilq/main -p 8080 -static /martilq/static -data /martilq/data/ -docs /martilq/docs -template /martilq/template
|