yagcdn/Dockerfile

56 lines
1.6 KiB
Docker
Raw Normal View History

2019-07-27 20:25:45 +02:00
FROM node:alpine as frontend
2019-07-28 21:49:23 +02:00
# install envsubst
RUN apk add -U --upgrade --no-cache gettext
2019-07-29 18:53:54 +02:00
RUN yarn global add elm uglify-js
2019-07-27 20:25:45 +02:00
2019-07-28 21:44:10 +02:00
COPY ./frontend/build.sh ./build.sh
2019-07-29 21:18:00 +02:00
COPY ./frontend/assets ./assets
2019-07-28 21:51:17 +02:00
COPY ./frontend/template.html ./template.html
2019-07-27 20:25:45 +02:00
COPY ./frontend/elm.json ./elm.json
COPY ./frontend/src ./src
2019-07-29 18:53:54 +02:00
# COPY ./frontend/tests ./tests
2019-07-27 20:25:45 +02:00
2019-07-28 21:44:10 +02:00
RUN ./build.sh
2019-07-27 20:25:45 +02:00
FROM ekidd/rust-musl-builder:stable as backend
# create new cargo project
2019-08-07 22:27:37 +02:00
RUN USER=rust cargo new --bin gitache
RUN USER=rust cargo new --lib time-cache
2019-08-07 22:24:20 +02:00
WORKDIR /home/rust/src/gitache
2019-07-27 20:25:45 +02:00
# copy build config
2019-08-07 22:24:20 +02:00
COPY --chown=rust ./backend/Cargo.lock ./gitache/Cargo.lock
COPY --chown=rust ./backend/Cargo.toml ./gitache/Cargo.toml
COPY --chown=rust ./time-cache/Cargo.toml ./time-cache/Cargo.toml
2019-07-27 20:25:45 +02:00
# build to cache dependencies
RUN cargo build --release
# delete build cache to prevent caching issues later on
RUN rm -r ./target/x86_64-unknown-linux-musl/release/.fingerprint/gitache-*
2019-08-07 22:24:20 +02:00
COPY ./backend/static ./gitache/static
COPY ./backend/src ./gitache/src
COPY ./time-cache/src ./time-cache/src
2019-07-27 20:25:45 +02:00
# build source code
RUN cargo build --release
# create /etc/password for rootless scratch container
FROM alpine:latest as user_builder
RUN USER=root adduser -D -u 10001 dummy
FROM scratch
# copy certificates
COPY --from=linuxkit/ca-certificates:v0.7 / /
COPY --from=user_builder /etc/passwd /etc/passwd
USER dummy
2019-08-07 22:24:20 +02:00
COPY --from=backend /home/rust/src/gitache/target/x86_64-unknown-linux-musl/release/gitache /
2019-07-28 21:55:11 +02:00
COPY --from=frontend /output/index.html /public/index.html
2019-07-28 21:56:53 +02:00
COPY --from=frontend /output/scripts /public/scripts
2019-07-29 21:16:46 +02:00
COPY --from=frontend /output/assets /public/assets
2019-07-27 20:25:45 +02:00
ENTRYPOINT ["/gitache"]