21 lines
1.1 KiB
Docker
21 lines
1.1 KiB
Docker
#### Build image with app-specific settings
|
|
FROM {{ ANDROID_DOCKER_IMAGE }} as build
|
|
|
|
# User-customized config
|
|
COPY ./config/edx.properties ./OpenEdXMobile/default_config/edx.properties
|
|
COPY ./config/tutor.yaml ./OpenEdXMobile/default_config/tutor.yaml
|
|
{% if ANDROID_ENABLE_RELEASE_MODE %}
|
|
# Add release settings
|
|
COPY ./config/gradle.properties ./gradle.properties.tutor
|
|
RUN cat ./gradle.properties.tutor >> ./gradle.properties
|
|
{% endif %}
|
|
|
|
RUN sed -i "s/APPLICATION_ID = .*/APPLICATION_ID = \"{{ LMS_HOST|reverse_host|replace("-", "_") }}\"/g" constants.gradle
|
|
RUN ./gradlew assembleProd{{ "Release" if ANDROID_ENABLE_RELEASE_MODE else "Debuggable" }}
|
|
|
|
#### File server to serve apk file
|
|
# https://hub.docker.com/_/caddy?tab=tags
|
|
FROM docker.io/caddy:2.6.2-alpine as production
|
|
COPY --from=build /app/edx-app-android/OpenEdXMobile/build/outputs/apk/prod/{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debuggable" }}/edx-{{ "release" if ANDROID_ENABLE_RELEASE_MODE else "debuggable" }}-{{ ANDROID_APP_VERSION }}.apk /srv/app.apk
|
|
CMD caddy file-server --listen=:8000 --root=/srv
|