-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#626) Use alpine 3.12 for windows builds ¯\_(ツ)_/¯
- Loading branch information
Showing
3 changed files
with
86 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# DOCKER-VERSION 0.3.4 | ||
FROM alpine:3.12.12 | ||
LABEL git="https://github.com/Difegue/LANraragi" | ||
|
||
ENV S6_KEEP_ENV 1 | ||
|
||
# warn if we can't run stage2 (fix-attrs/cont-init) | ||
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS 1 | ||
|
||
# wait 10s before KILLing | ||
ENV S6_KILL_GRACETIME 10000 | ||
|
||
# s6 | ||
ENTRYPOINT ["/init"] | ||
|
||
# Check application health | ||
HEALTHCHECK --interval=1m --timeout=10s --retries=3 \ | ||
CMD wget --quiet --tries=1 --no-check-certificate --spider \ | ||
http://localhost:3000 || exit 1 | ||
|
||
#Default mojo server port | ||
EXPOSE 3000 | ||
|
||
# Enable UTF-8 (might not do anything extra on alpine tho) | ||
ENV LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 \ | ||
# rootless user id | ||
LRR_UID=9001 LRR_GID=9001 \ | ||
# Environment variables overridable by the user on container deployment | ||
LRR_NETWORK=http://*:3000 \ | ||
# extra variables | ||
EV_EXTRA_DEFS=-DEV_NO_ATFORK \ | ||
# Enable automatic http proxy detection for mojo | ||
MOJO_PROXY=1 | ||
|
||
RUN \ | ||
if [ $(getent group ${LRR_GID}) ]; then \ | ||
adduser -D -u ${LRR_UID} koyomi; \ | ||
else \ | ||
addgroup -g ${LRR_GID} koyomi && \ | ||
adduser -D -u ${LRR_UID} -G koyomi koyomi; \ | ||
fi | ||
|
||
# we use s6-overlay-nobin to just pull in the s6-overlay arch agnostic (shell) | ||
# components, since we apk install the binaries of s6 later which are arch specific | ||
ADD https://github.com/just-containers/s6-overlay/releases/download/v2.0.0.1/s6-overlay-nobin.tar.gz /tmp/s6-overlay-nobin.tar.gz | ||
RUN tar -C / -xzf /tmp/s6-overlay-nobin.tar.gz && rm -f /tmp/s6-overlay-nobin.tar.gz | ||
|
||
WORKDIR /home/koyomi/lanraragi | ||
|
||
#Copy cpanfile and install script before copying the entire context | ||
#This allows for Docker cache to preserve cpan dependencies | ||
COPY --chown=koyomi:koyomi /tools/cpanfile /tools/install.pl /tools/build/docker/install-everything.sh tools/ | ||
COPY --chown=koyomi:koyomi /package.json package.json | ||
|
||
# Run the install script as root | ||
RUN sh ./tools/install-everything.sh | ||
|
||
#Copy remaining LRR files from context | ||
COPY --chown=koyomi:koyomi /lib lib | ||
COPY --chown=koyomi:koyomi /public public | ||
COPY --chown=koyomi:koyomi /script script | ||
COPY --chown=koyomi:koyomi /templates templates | ||
COPY --chown=koyomi:koyomi /tests tests | ||
COPY --chown=koyomi:koyomi /lrr.conf lrr.conf | ||
COPY --chown=koyomi:koyomi /tools/build/docker/redis.conf tools/build/docker/ | ||
COPY /tools/build/docker/wsl.conf /etc/wsl.conf | ||
COPY /tools/build/docker/s6/cont-init.d/ /etc/cont-init.d/ | ||
COPY /tools/build/docker/s6/services.d/ /etc/services.d/ | ||
#COPY /tools/build/docker/s6/fix-attrs.d/ /etc/fix-attrs.d/ | ||
|
||
# Persistent volumes | ||
VOLUME [ "/home/koyomi/lanraragi/content" ] | ||
VOLUME [ "/home/koyomi/lanraragi/database"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters