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-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
|
|
|
|
RUN USER=rust cargo init --bin
|
|
|
|
# copy build config
|
|
|
|
COPY --chown=rust ./backend/Cargo.lock ./Cargo.lock
|
|
|
|
COPY --chown=rust ./backend/Cargo.toml ./Cargo.toml
|
|
|
|
# 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-*
|
|
|
|
|
|
|
|
COPY ./backend/static ./static
|
|
|
|
COPY ./backend/src ./src
|
|
|
|
# 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
|
|
|
|
|
|
|
|
COPY --from=backend /home/rust/src/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-27 20:25:45 +02:00
|
|
|
|
|
|
|
ENTRYPOINT ["/gitache"]
|