This repository has been archived on 2023-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
container-kavita-alpine/alpine-build.dockerfile

16 lines
312 B
Plaintext
Raw Normal View History

2022-09-01 09:19:29 +02:00
# This Dockerfile builds kavita in alpine
FROM alpine:3.16.2
# Install necessary packages
RUN apk add git \
dotnet6-sdk npm
2022-09-01 09:19:29 +02:00
# copy download & build script
COPY ["alpine_build.sh","/"]
2022-09-01 09:19:29 +02:00
ENTRYPOINT [ "/bin/ash" ]
CMD [ "alpine_build.sh" ] # call build script here
# bind mount "/output" to any host folder